Run unit tests in one thread

This commit is contained in:
Harald Kube 2021-03-28 23:00:54 +02:00
parent a2fbb480e6
commit f3f571c830

View file

@ -6,4 +6,4 @@ cargo install cargo-watch
# Run the tests on change # Run the tests on change
# Set RUST_BACKTRACE to 1 to see a short backtrace in case of an error # 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 # 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"