2026-01-21 18:53:44 +01:00
|
|
|
PYTHON ?= python3
|
2025-10-15 19:56:43 +02:00
|
|
|
|
|
|
|
|
.PHONY: test install help
|
|
|
|
|
|
|
|
|
|
help:
|
|
|
|
|
@echo "Targets:"
|
|
|
|
|
@echo " make test - run unit tests"
|
|
|
|
|
@echo " make install - print installation guidance"
|
|
|
|
|
@echo " make help - this help"
|
|
|
|
|
|
|
|
|
|
test:
|
2026-01-21 18:53:44 +01:00
|
|
|
@PYTHONPATH="$(CURDIR)/src" "$(PYTHON)" -m unittest discover -s tests/unit -p "test_*.py" -v
|