.PHONY: test test-unit test-integration lint format

test:
	pytest tests/

test-unit:
	pytest tests/unit_tests/

test-integration:
	pytest tests/integration_tests/

lint:
	ruff check .

format:
	ruff format .
