ci: run all tests in release mode

The reason these were run in debug mode was that it took less time to
build them. However, ignored tests are built in release mode in CI,
because they take too long otherwise. So we might as well just build
all tests once.
This commit is contained in:
Antoine Martin 2020-12-15 12:09:46 +01:00
parent 8d11c817f3
commit 7a2ef2dbe0

View file

@ -3,7 +3,7 @@ watch:
cargo watch -x clippy
check:
cargo test --all
cargo test --all --release
# run these in release mode because the reason they're ignored is usually that
# they take a long time to run