2019-09-03 18:02:21 +00:00
|
|
|
# beacon_chain
|
2024-01-06 14:26:56 +00:00
|
|
|
# Copyright (c) 2021-2024 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.
|
|
|
|
|
2024-02-29 13:24:08 +00:00
|
|
|
{.push raises: [].}
|
|
|
|
|
2022-12-15 22:51:04 +00:00
|
|
|
import ../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,
|
2022-01-03 17:43:00 +00:00
|
|
|
./bellatrix/all_bellatrix_fixtures,
|
2022-10-27 19:11:13 +00:00
|
|
|
./capella/all_capella_fixtures,
|
2023-02-15 21:07:31 +00:00
|
|
|
./deneb/all_deneb_fixtures,
|
2022-12-15 22:51:04 +00:00
|
|
|
./test_fixture_fork,
|
2022-07-23 05:54:01 +00:00
|
|
|
./test_fixture_fork_choice,
|
|
|
|
./test_fixture_light_client_single_merkle_proof,
|
|
|
|
./test_fixture_light_client_sync,
|
2022-12-13 15:58:59 +00:00
|
|
|
./test_fixture_light_client_update_ranking,
|
2023-11-04 19:35:41 +00:00
|
|
|
./test_fixture_merkle_proof,
|
2022-12-14 07:42:25 +00:00
|
|
|
./test_fixture_sanity_blocks,
|
2022-12-15 22:51:04 +00:00
|
|
|
./test_fixture_sanity_slots,
|
|
|
|
./test_fixture_transition
|
2019-12-05 10:27:00 +00:00
|
|
|
|
2021-10-12 11:36:52 +00:00
|
|
|
summarizeLongTests("ConsensusSpecPreset")
|