From 4f63c89bb649209b9228512533eaf0365cee544a Mon Sep 17 00:00:00 2001 From: Michael Sproul Date: Mon, 15 Apr 2019 09:38:04 +1000 Subject: [PATCH] jenkins: run all state tests --- Jenkinsfile | 3 +++ eth2/state_processing/tests/tests.rs | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) 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"); }