Only run non-ef tests when executing make test

This commit is contained in:
b-m-f 2019-10-29 16:58:39 +00:00
parent dd370b2e33
commit dfe858b8cb
No known key found for this signature in database
GPG Key ID: 34DB67572480AAD1

View File

@ -11,10 +11,20 @@ release:
# Runs the full workspace tests, without downloading any additional test # Runs the full workspace tests, without downloading any additional test
# vectors. # vectors.
test: test:
cargo test --all --all-features --release cargo test --all --all-features --release --exclude ef_tests
# only run the ef-test vectors
--run-ef-tests:
cargo test --release --manifest-path=$(EF_TESTS)/Cargo.toml --features "ef_tests"
test-ef: make-ef-tests --run-ef-tests
# Runs the entire test suite, downloading test vectors if required. # Runs the entire test suite, downloading test vectors if required.
test-full: make-ef-tests test test-full:
test
test-ef
# Runs the makefile in the `ef_tests` repo. # Runs the makefile in the `ef_tests` repo.
# #