diff options
author | Bryan Newbold <bnewbold@robocracy.org> | 2020-08-04 18:00:05 -0700 |
---|---|---|
committer | Bryan Newbold <bnewbold@robocracy.org> | 2020-08-04 18:03:33 -0700 |
commit | 902d04b20767d27adc84432f01eab39d008bd8a1 (patch) | |
tree | b56e733465aecc7a8c9b221dde7f7a156d8f42cb /rust | |
parent | eabab2e2a44b715c914182544e57899323234f86 (diff) | |
download | fatcat-902d04b20767d27adc84432f01eab39d008bd8a1.tar.gz fatcat-902d04b20767d27adc84432f01eab39d008bd8a1.zip |
rust Makefile: fix test command
Diffstat (limited to 'rust')
-rw-r--r-- | rust/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/rust/Makefile b/rust/Makefile index 81fb32af..3bfc1b49 100644 --- a/rust/Makefile +++ b/rust/Makefile @@ -10,8 +10,7 @@ help: ## Print info about all commands .PHONY: test test: ## Run all tests and lints - cargo test -- - pipenv run mypy fatcat_scholar/*.py tests/ --ignore-missing-imports + cargo test -- --test-threads 1 .PHONY: dev dev: ## Run web service locally, with reloading |