2019-09-03 18:02:21 +00:00
|
|
|
# beacon_chain
|
2021-05-28 15:25:58 +00:00
|
|
|
# Copyright (c) 2021 Status Research & Development GmbH
|
2019-09-03 18:02:21 +00:00
|
|
|
# Licensed and distributed under either of
|
2019-11-25 15:30:02 +00:00
|
|
|
# * MIT license (license terms in the root directory or at https://opensource.org/licenses/MIT).
|
|
|
|
# * Apache v2 license (license terms in the root directory or at https://www.apache.org/licenses/LICENSE-2.0).
|
2019-09-03 18:02:21 +00:00
|
|
|
# at your option. This file may not be copied, modified, or distributed except according to those terms.
|
|
|
|
|
2021-10-12 11:36:52 +00:00
|
|
|
import
|
|
|
|
chronicles,
|
|
|
|
../testutil
|
2019-09-03 18:02:21 +00:00
|
|
|
|
2021-10-12 11:36:52 +00:00
|
|
|
# Tests that depend on `mainnet` vs `minimal` compile-time configuration
|
2019-12-05 10:27:00 +00:00
|
|
|
|
2019-09-03 18:02:21 +00:00
|
|
|
import
|
2021-10-12 11:36:52 +00:00
|
|
|
./phase0/all_phase0_fixtures,
|
|
|
|
./altair/all_altair_fixtures,
|
2021-11-25 18:41:39 +00:00
|
|
|
./merge/all_merge_fixtures,
|
|
|
|
./test_fixture_fork_choice
|
2019-12-05 10:27:00 +00:00
|
|
|
|
2021-10-12 11:36:52 +00:00
|
|
|
summarizeLongTests("ConsensusSpecPreset")
|