.PHONY: test test-e2e test-all test-integration

test:
	uv run pytest tests/ -v --ignore=tests/integration --ignore=tests/e2e

test-e2e:
	uv run pytest tests/e2e/ -v

test-all:
	uv run pytest tests/ -v --ignore=tests/integration

test-integration:
	uv run pytest tests/integration/ -v
