2018-07-20 13:46:03 +00:00
|
|
|
# beacon_chain
|
|
|
|
# Copyright (c) 2018 Status Research & Development GmbH
|
|
|
|
# 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.
|
|
|
|
|
2019-12-05 10:27:00 +00:00
|
|
|
import ./testutil
|
|
|
|
|
2019-11-22 19:56:39 +00:00
|
|
|
import # Official constants
|
|
|
|
./official/test_fixture_const_sanity_check
|
|
|
|
|
2019-05-10 08:14:01 +00:00
|
|
|
import # Unit test
|
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-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,
|
|
|
|
./test_peer_pool,
|
2018-11-19 16:47:57 +00:00
|
|
|
./test_ssz,
|
2019-02-21 17:20:50 +00:00
|
|
|
./test_state_transition,
|
2021-01-21 17:42:57 +00:00
|
|
|
./test_statediff,
|
|
|
|
./test_sync_manager,
|
2019-09-08 00:56:24 +00:00
|
|
|
./test_sync_protocol,
|
2019-11-25 20:18:02 +00:00
|
|
|
./test_zero_signature,
|
2020-09-16 11:30:03 +00:00
|
|
|
./fork_choice/tests_fork_choice,
|
|
|
|
./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
|
|
|
|
2019-11-24 10:46:45 +00:00
|
|
|
# TODO: json tests were removed
|
|
|
|
|
|
|
|
# import # Official fixtures that don't require SSZ parsing of invalid BLS signatures
|
2020-10-08 19:02:05 +00:00
|
|
|
# # https://github.com/status-im/nimbus-eth2/issues/374
|
2019-11-24 10:46:45 +00:00
|
|
|
# ./official/test_fixture_bls
|
2019-12-05 10:27:00 +00:00
|
|
|
|
2020-03-10 04:00:19 +00:00
|
|
|
summarizeLongTests("AllTests")
|