.PHONY: test test-integration test-all lint docs

test:
	pytest tests/unit -v

test-integration:
	pytest tests/integration -v -m integration

test-all:
	pytest tests/ -v

lint:
	ruff check .
	mypy djraphdb/

docs:
	@echo "Run: mkdocs serve"
