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:
parent
8d11c817f3
commit
7a2ef2dbe0
2
Makefile
2
Makefile
|
@ -3,7 +3,7 @@ watch:
|
||||||
cargo watch -x clippy
|
cargo watch -x clippy
|
||||||
|
|
||||||
check:
|
check:
|
||||||
cargo test --all
|
cargo test --all --release
|
||||||
|
|
||||||
# run these in release mode because the reason they're ignored is usually that
|
# run these in release mode because the reason they're ignored is usually that
|
||||||
# they take a long time to run
|
# they take a long time to run
|
||||||
|
|
Loading…
Reference in a new issue