diff options
author | 2022-05-29 11:11:16 -0700 | |
---|---|---|
committer | 2022-05-29 11:21:04 -0700 | |
commit | 3430113260f27bb8d56fa71a7752e7241af8cf94 (patch) | |
tree | 3ce4782502430c1557eb89b327491004f4c0c270 | |
parent | Deps: 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-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |