.PHONY: test lint

test:
	python3 -m pytest tests/ -q

lint:
	ruff check . && ruff format --check .
