diff --git a/Jenkinsfile b/Jenkinsfile index d12189941..48a07e1e7 100644 --- a/Jenkinsfile +++ b/Jenkinsfile @@ -23,6 +23,9 @@ pipeline { steps { sh 'cargo test --verbose --all' sh 'cargo test --verbose --all --release' + sh 'cargo test --manifest-path eth2/state_processing/Cargo.toml --verbose \ + --release --features fake_crypto --ignored' + } } } diff --git a/eth2/state_processing/tests/tests.rs b/eth2/state_processing/tests/tests.rs index cdad99062..6491e255a 100644 --- a/eth2/state_processing/tests/tests.rs +++ b/eth2/state_processing/tests/tests.rs @@ -146,7 +146,7 @@ fn run_state_transition_tests_small() { // Run with --ignored to run this test #[test] -#[ignored] +#[ignore] fn run_state_transition_tests_large() { run_state_transition_test("sanity-check_default-config_100-vals.yaml"); }