user-engine/Makefile

15 lines
276 B
Makefile
Raw Normal View History

2026-05-22 21:39:10 +02:00
.PHONY: test test-unit test-scenarios test-integration test-conformance
PYTHON ?= python3
2026-05-22 21:39:10 +02:00
test: test-unit
test-unit:
PYTHONPATH=src $(PYTHON) -m unittest discover -s tests -p 'test_*.py'
2026-05-22 21:39:10 +02:00
test-scenarios: test-unit
test-integration: test-unit
test-conformance: test-unit