diff options
| author | Florian Fischer <florian.fischer@muhq.space> | 2022-11-02 13:24:03 +0100 |
|---|---|---|
| committer | Florian Fischer <florian.fischer@muhq.space> | 2025-11-05 10:12:14 +0100 |
| commit | 9a44df3e617170f8edc7364b8dd234b1c7547d6d (patch) | |
| tree | 56134cd9adb468f46dddf19ebe03b8b72cafc9e1 /Makefile | |
| parent | 8544bbd302297ebb016447d637cb6d1b4bf2d0fb (diff) | |
| download | geldschieberbot-9a44df3e617170f8edc7364b8dd234b1c7547d6d.tar.gz geldschieberbot-9a44df3e617170f8edc7364b8dd234b1c7547d6d.zip | |
add helper code for future minimize feature
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 |
