2018-07-20 13:46:03 +00:00
|
|
|
# beacon_chain
|
2023-02-01 15:29:55 +00:00
|
|
|
# Copyright (c) 2018-2023 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
|
|
|
|
./testutil
|
2019-12-05 10:27:00 +00:00
|
|
|
|
2019-05-10 08:14:01 +00:00
|
|
|
import # Unit test
|
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,
|
2022-01-11 10:01:54 +00:00
|
|
|
./test_beacon_time,
|
2021-12-09 17:06:21 +00:00
|
|
|
./test_block_dag,
|
2021-12-06 09:49:01 +00:00
|
|
|
./test_block_processor,
|
2022-01-26 12:20:08 +00:00
|
|
|
./test_block_quarantine,
|
2022-06-17 11:55:03 +00:00
|
|
|
./test_conf,
|
2020-07-11 19:07:14 +00:00
|
|
|
./test_datatypes,
|
2022-12-09 16:05:55 +00:00
|
|
|
./test_deposit_snapshots,
|
2021-03-24 10:48:53 +00:00
|
|
|
./test_discovery,
|
2022-02-27 16:55:02 +00:00
|
|
|
./test_engine_authentication,
|
2023-05-15 05:05:12 +00:00
|
|
|
./test_el_manager,
|
2023-03-14 15:40:37 +00:00
|
|
|
./test_el_conf,
|
2021-08-18 18:57:58 +00:00
|
|
|
./test_eth2_ssz_serialization,
|
2021-01-21 17:42:57 +00:00
|
|
|
./test_exit_pool,
|
2021-11-10 11:39:08 +00:00
|
|
|
./test_forks,
|
2021-12-21 14:24:23 +00:00
|
|
|
./test_gossip_transition,
|
2021-04-26 20:39:44 +00:00
|
|
|
./test_gossip_validation,
|
2021-01-21 17:42:57 +00:00
|
|
|
./test_helpers,
|
|
|
|
./test_honest_validator,
|
2022-12-09 16:05:55 +00:00
|
|
|
./test_key_splitting,
|
2022-03-17 22:26:56 +00:00
|
|
|
./test_light_client_processor,
|
2022-12-09 16:05:55 +00:00
|
|
|
./test_light_client,
|
2021-08-17 08:07:17 +00:00
|
|
|
./test_message_signatures,
|
2023-05-11 11:11:00 +00:00
|
|
|
./test_network_metadata,
|
2021-01-21 17:42:57 +00:00
|
|
|
./test_peer_pool,
|
2022-12-09 16:05:55 +00:00
|
|
|
./test_remote_keystore,
|
|
|
|
./test_serialization,
|
2021-11-18 12:02:43 +00:00
|
|
|
./test_spec,
|
2021-01-21 17:42:57 +00:00
|
|
|
./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,
|
2022-12-09 16:05:55 +00:00
|
|
|
./test_validator_pool,
|
2019-11-25 20:18:02 +00:00
|
|
|
./test_zero_signature,
|
2023-04-06 13:16:21 +00:00
|
|
|
./test_signing_node,
|
2021-10-12 11:36:52 +00:00
|
|
|
./consensus_spec/all_tests as consensus_all_tests,
|
|
|
|
./slashing_protection/test_fixtures,
|
2023-05-09 20:09:09 +00:00
|
|
|
./slashing_protection/test_slashing_protection_db,
|
|
|
|
./test_validator_client
|
2020-03-04 21:27:11 +00:00
|
|
|
|
2021-12-22 12:37:31 +00:00
|
|
|
when not defined(i386):
|
|
|
|
# Avoids "Out of memory" CI failures
|
|
|
|
import
|
|
|
|
./test_blockchain_dag,
|
|
|
|
./test_keystore,
|
2023-05-15 02:14:58 +00:00
|
|
|
./test_keystore_management
|
|
|
|
|
|
|
|
when not defined(windows):
|
|
|
|
import ./test_keymanager_api
|
2021-12-22 12:37:31 +00:00
|
|
|
|
2020-03-10 04:00:19 +00:00
|
|
|
summarizeLongTests("AllTests")
|