diff options
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 10 |
1 files changed, 8 insertions, 2 deletions
@@ -1,4 +1,5 @@ SRC=$(wildcard *.py) +PYTESTS := minimize.py .PHONY: check check: check-pylint check-format check-mypy @@ -19,6 +20,11 @@ check-mypy: format: yapf -i $(SRC) -.PHONY: test -test: +.PHONY: test unittests pytest +test: unittests pytest + +pytest: + pytest $(PYTESTS) + +unittests: python3 test.py |
