This repository has been archived on 2026-07-08. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
user-engine/Makefile

15 lines
276 B
Makefile

.PHONY: test test-unit test-scenarios test-integration test-conformance
PYTHON ?= python3
test: test-unit
test-unit:
PYTHONPATH=src $(PYTHON) -m unittest discover -s tests -p 'test_*.py'
test-scenarios: test-unit
test-integration: test-unit
test-conformance: test-unit