aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorGravatar MarkKoz <[email protected]>2022-05-30 14:34:57 -0700
committerGravatar MarkKoz <[email protected]>2022-05-30 14:34:57 -0700
commitf4ee29f9a1ad96796a07c1af301bf865f1bbdb00 (patch)
tree19cb53b7154517f94deeeab76564ff2eb58ab274 /Makefile
parentAdd a pyproject.toml (diff)
Tweak Makefile format
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile3
1 files changed, 1 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index e4c8383..add4293 100644
--- a/Makefile
+++ b/Makefile
@@ -24,12 +24,11 @@ lint: setup
pre-commit run --all-files
# Fix ownership of the coverage file even if tests fail & preserve exit code
-# Install numpy because a test checks if it's importable
.PHONY: test
test:
docker-compose build -q --force-rm
docker-compose run --entrypoint /bin/bash --rm snekbox -c \
- 'coverage run -m unittest; e=$?; chown --reference=. .coverage; exit $e'
+ 'coverage run -m unittest; e=$?; chown --reference=. .coverage; exit $e'
.PHONY: report
report: setup