From f3f571c830427c5d7d515410d28c12e33522bd02 Mon Sep 17 00:00:00 2001 From: Harald Kube Date: Sun, 28 Mar 2021 23:00:54 +0200 Subject: [PATCH] Run unit tests in one thread --- auto_test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auto_test.sh b/auto_test.sh index 9e93381..5412194 100755 --- a/auto_test.sh +++ b/auto_test.sh @@ -6,4 +6,4 @@ cargo install cargo-watch # Run the tests on change # Set RUST_BACKTRACE to 1 to see a short backtrace in case of an error # Set RUST_BACKTRACE to "full" to see a full backtrace in case of an error -RUST_BACKTRACE=0 cargo watch -x "test -- --nocapture" +RUST_BACKTRACE=0 cargo watch -x "test -- --nocapture --test-threads 1"