aboutsummaryrefslogtreecommitdiffstats
path: root/rust/Makefile
diff options
context:
space:
mode:
authorBryan Newbold <bnewbold@robocracy.org>2020-08-04 18:00:05 -0700
committerBryan Newbold <bnewbold@robocracy.org>2020-08-04 18:03:33 -0700
commit902d04b20767d27adc84432f01eab39d008bd8a1 (patch)
treeb56e733465aecc7a8c9b221dde7f7a156d8f42cb /rust/Makefile
parenteabab2e2a44b715c914182544e57899323234f86 (diff)
downloadfatcat-902d04b20767d27adc84432f01eab39d008bd8a1.tar.gz
fatcat-902d04b20767d27adc84432f01eab39d008bd8a1.zip
rust Makefile: fix test command
Diffstat (limited to 'rust/Makefile')
-rw-r--r--rust/Makefile3
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