aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGravatar MarkKoz <[email protected]>2022-05-29 11:11:16 -0700
committerGravatar MarkKoz <[email protected]>2022-05-29 11:21:04 -0700
commit3430113260f27bb8d56fa71a7752e7241af8cf94 (patch)
tree3ce4782502430c1557eb89b327491004f4c0c270
parentDeps: use pip-tools instead of Pipenv (diff)
Remove redundant numpy install in test command
It's already installed by the container since Docker Compose is configured with the DEV arg.
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index ffb3385..42221aa 100644
--- a/Makefile
+++ b/Makefile
@@ -28,7 +28,7 @@ lint: setup
.PHONY: test
test:
docker-compose run --entrypoint /bin/bash --rm snekbox -c \
- 'env PYTHONUSERBASE=/snekbox/user_base pip install numpy && coverage run -m unittest; e=$?; chown --reference=. .coverage; exit $e'
+ 'coverage run -m unittest; e=$?; chown --reference=. .coverage; exit $e'
.PHONY: report
report: setup