aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorFlorian Fischer <florian.fischer@muhq.space>2022-11-02 13:24:03 +0100
committerFlorian Fischer <florian.fischer@muhq.space>2025-11-05 10:12:14 +0100
commit9a44df3e617170f8edc7364b8dd234b1c7547d6d (patch)
tree56134cd9adb468f46dddf19ebe03b8b72cafc9e1 /Makefile
parent8544bbd302297ebb016447d637cb6d1b4bf2d0fb (diff)
downloadgeldschieberbot-9a44df3e617170f8edc7364b8dd234b1c7547d6d.tar.gz
geldschieberbot-9a44df3e617170f8edc7364b8dd234b1c7547d6d.zip
add helper code for future minimize feature
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile10
1 files changed, 8 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index bc47e64..8a99741 100644
--- a/Makefile
+++ b/Makefile
@@ -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