From 7a2ef2dbe0968f69c42aa4054b8868ba1635f7d3 Mon Sep 17 00:00:00 2001 From: Antoine Martin Date: Tue, 15 Dec 2020 12:09:46 +0100 Subject: [PATCH] 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. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index edb4c61..1b23420 100644 --- a/Makefile +++ b/Makefile @@ -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