16 lines
278 B
Makefile
16 lines
278 B
Makefile
|
|
PYTHON ?= python3
|
||
|
|
|
||
|
|
.PHONY: install-dev test lint check-layer
|
||
|
|
|
||
|
|
install-dev:
|
||
|
|
$(PYTHON) -m pip install -e ".[dev]"
|
||
|
|
|
||
|
|
test:
|
||
|
|
PYTHONPATH=src $(PYTHON) -m pytest -q
|
||
|
|
|
||
|
|
lint:
|
||
|
|
$(PYTHON) -m ruff check src tests scripts
|
||
|
|
|
||
|
|
check-layer:
|
||
|
|
$(PYTHON) scripts/check_layer_conformance.py --report
|