15 lines
279 B
Makefile
15 lines
279 B
Makefile
PYTHON ?= python3
|
|
|
|
.PHONY: install-dev test lint run-demo
|
|
|
|
install-dev:
|
|
$(PYTHON) -m pip install -e ".[dev]"
|
|
|
|
test:
|
|
PYTHONPATH=src $(PYTHON) -m pytest -q
|
|
|
|
lint:
|
|
$(PYTHON) -m ruff check src tests
|
|
|
|
run-demo:
|
|
PYTHONPATH=src $(PYTHON) -m kings_guard.main --pilot qonto-assistant
|