jenkins: run all state tests

This commit is contained in:
Michael Sproul 2019-04-15 09:38:04 +10:00
parent a19f8580f5
commit 4f63c89bb6
No known key found for this signature in database
GPG Key ID: 77B1309D2E54E914
2 changed files with 4 additions and 1 deletions

3
Jenkinsfile vendored
View File

@ -23,6 +23,9 @@ pipeline {
steps { steps {
sh 'cargo test --verbose --all' sh 'cargo test --verbose --all'
sh 'cargo test --verbose --all --release' sh 'cargo test --verbose --all --release'
sh 'cargo test --manifest-path eth2/state_processing/Cargo.toml --verbose \
--release --features fake_crypto --ignored'
} }
} }
} }

View File

@ -146,7 +146,7 @@ fn run_state_transition_tests_small() {
// Run with --ignored to run this test // Run with --ignored to run this test
#[test] #[test]
#[ignored] #[ignore]
fn run_state_transition_tests_large() { fn run_state_transition_tests_large() {
run_state_transition_test("sanity-check_default-config_100-vals.yaml"); run_state_transition_test("sanity-check_default-config_100-vals.yaml");
} }