2018-07-20 13:46:03 +00:00
|
|
|
# beacon_chain
|
2021-05-28 12:51:15 +00:00
|
|
|
# Copyright (c) 2018-2021 Status Research & Development GmbH
|
2018-07-20 13:46:03 +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).
|
2018-07-20 13:46:03 +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
|
|
|
# All tests except scenarios, which as compiled separately for mainnet and minimal
|
|
|
|
|
|
|
|
import
|
|
|
|
chronicles,
|
|
|
|
./testutil
|
2019-12-05 10:27:00 +00:00
|
|
|
|
2019-05-10 08:14:01 +00:00
|
|
|
import # Unit test
|
2021-10-12 11:36:52 +00:00
|
|
|
./ssz/all_tests as ssz_all_tests,
|
2021-10-18 09:11:44 +00:00
|
|
|
./test_action_tracker,
|
2019-02-19 23:35:02 +00:00
|
|
|
./test_attestation_pool,
|
2019-02-21 17:20:50 +00:00
|
|
|
./test_beacon_chain_db,
|
2018-11-29 05:23:40 +00:00
|
|
|
./test_beaconstate,
|
2020-06-03 13:52:02 +00:00
|
|
|
./test_bitseqs,
|
2019-02-28 21:21:29 +00:00
|
|
|
./test_block_pool,
|
2020-07-11 19:07:14 +00:00
|
|
|
./test_datatypes,
|
2021-03-24 10:48:53 +00:00
|
|
|
./test_discovery,
|
2020-11-03 19:02:43 +00:00
|
|
|
./test_eth1_monitor,
|
2021-08-18 18:57:58 +00:00
|
|
|
./test_eth2_ssz_serialization,
|
2021-01-21 17:42:57 +00:00
|
|
|
./test_exit_pool,
|
2021-04-26 20:39:44 +00:00
|
|
|
./test_gossip_validation,
|
2021-01-21 17:42:57 +00:00
|
|
|
./test_helpers,
|
|
|
|
./test_honest_validator,
|
|
|
|
./test_interop,
|
2021-10-12 11:36:52 +00:00
|
|
|
./test_keystore,
|
2021-08-17 08:07:17 +00:00
|
|
|
./test_message_signatures,
|
2021-01-21 17:42:57 +00:00
|
|
|
./test_peer_pool,
|
|
|
|
./test_statediff,
|
2021-08-30 01:00:37 +00:00
|
|
|
./test_sync_committee_pool,
|
2021-01-21 17:42:57 +00:00
|
|
|
./test_sync_manager,
|
2019-11-25 20:18:02 +00:00
|
|
|
./test_zero_signature,
|
2020-09-16 11:30:03 +00:00
|
|
|
./fork_choice/tests_fork_choice,
|
2021-10-12 11:36:52 +00:00
|
|
|
./consensus_spec/all_tests as consensus_all_tests,
|
|
|
|
./slashing_protection/test_fixtures,
|
2020-09-16 11:30:03 +00:00
|
|
|
./slashing_protection/test_slashing_interchange,
|
2021-02-09 15:23:06 +00:00
|
|
|
./slashing_protection/test_slashing_protection_db,
|
|
|
|
./slashing_protection/test_migration
|
2020-03-04 21:27:11 +00:00
|
|
|
|
2019-08-28 12:07:00 +00:00
|
|
|
import # Refactor state transition unit tests
|
2019-12-06 16:07:58 +00:00
|
|
|
# In mainnet these take 2 minutes and are empty TODOs
|
2019-08-28 12:07:00 +00:00
|
|
|
./spec_block_processing/test_process_deposits,
|
|
|
|
./spec_block_processing/test_process_attestation,
|
2019-09-24 14:56:12 +00:00
|
|
|
./spec_epoch_processing/test_process_justification_and_finalization
|
2019-08-28 12:07:00 +00:00
|
|
|
|
2020-03-10 04:00:19 +00:00
|
|
|
summarizeLongTests("AllTests")
|