refactor: organize tests into unit/ and integration/ directories

Move unit tests from tests/ to tests/unit/ for clearer separation
from integration tests. Update pyproject.toml testpaths and Makefile
test target to reflect the new structure.
This commit is contained in:
2025-12-30 17:38:46 -05:00
parent c57e71b92a
commit e235e998e4
11 changed files with 2 additions and 2 deletions

View File

@@ -5,7 +5,7 @@ help: ## Show this help
@grep -E '^[a-zA-Z_-]+:.*?## .*$$' $(MAKEFILE_LIST) | sort | awk 'BEGIN {FS = ":.*?## "}; {printf "\033[36m%-20s\033[0m %s\n", $$1, $$2}'
test: ## Run unit tests
uv run pytest tests/ -v --ignore=tests/integration
uv run pytest tests/unit/ -v
build: ## Build Docker images for testing
docker compose -f docker-compose.test.yaml build