.PHONY: test test-unit test-scenarios test-integration test-conformance check-layer

PYTHON ?= python3

test: test-unit check-layer

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 check-layer

check-layer:
	PYTHONPATH=src $(PYTHON) scripts/check_layer_conformance.py --report
