From 449312d95ceefc45b58baf21e0c63fe9e9cad178 Mon Sep 17 00:00:00 2001 From: Paul Hauner Date: Tue, 5 Feb 2019 12:29:08 +1100 Subject: [PATCH] Set all test_harness tests to `ignore` They were taking too long, we'll need to build a different build cycle to cover these. --- beacon_node/beacon_chain/test_harness/tests/chain.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/beacon_node/beacon_chain/test_harness/tests/chain.rs b/beacon_node/beacon_chain/test_harness/tests/chain.rs index f841575331..c0b537695d 100644 --- a/beacon_node/beacon_chain/test_harness/tests/chain.rs +++ b/beacon_node/beacon_chain/test_harness/tests/chain.rs @@ -4,6 +4,7 @@ use test_harness::BeaconChainHarness; use types::ChainSpec; #[test] +#[ignore] fn it_can_build_on_genesis_block() { let mut spec = ChainSpec::foundation(); spec.genesis_slot = spec.epoch_length * 8;