diff options
author | Ben Morrison <ben@gbmor.dev> | 2020-05-28 13:01:45 -0400 |
---|---|---|
committer | Ben Morrison <ben@gbmor.dev> | 2020-05-28 13:01:45 -0400 |
commit | ec59c5f5d846b15a81629dc670d2e13a1a15b5f4 (patch) | |
tree | c65557d7a29f9b6767b086d4d4ffea4699aff109 | |
parent | 967ac7e1f42b5824028d562b14f412e12e3d0b4a (diff) | |
download | clinte-ec59c5f5d846b15a81629dc670d2e13a1a15b5f4.tar.gz |
make test is now single-threaded
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile index 4545bc7..7041eff 100644 --- a/Makefile +++ b/Makefile @@ -51,7 +51,7 @@ upgrade: .PHONY: test test: @printf "\n%s\n" "Running tests..." - cargo test + RUST_TEST_THREADS=1 cargo test @printf "\n%s\n" "...Done!" .PHONY: uninstall |