feat: add module-aware test impact analysis and fix CI test scope
Some checks failed
CI / ruff (push) Successful in 13s
CI / validate (push) Has been cancelled
CI / dependency-scanning (push) Has been cancelled
CI / docs (push) Has been cancelled
CI / deploy (push) Has been cancelled
CI / pytest (push) Has been cancelled

Add run_affected_tests.py script that uses module dependency graph to
run only tests for changed modules and their dependents. Fix CI and
Makefile to use pyproject.toml testpaths (was missing 9 of 18 modules).

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-12 22:29:31 +01:00
parent 9c39a9703f
commit 9a13aee8ed
3 changed files with 297 additions and 13 deletions

View File

@@ -1,7 +1,7 @@
# Orion Multi-Tenant E-Commerce Platform Makefile
# Cross-platform compatible (Windows & Linux)
.PHONY: install install-dev install-docs install-all dev test test-coverage lint format check docker-build docker-up docker-down clean help tailwind-install tailwind-dev tailwind-build tailwind-watch arch-check arch-check-file arch-check-object test-db-up test-db-down test-db-reset test-db-status celery-worker celery-beat celery-dev flower celery-status celery-purge urls infra-check
.PHONY: install install-dev install-docs install-all dev test test-coverage lint format check docker-build docker-up docker-down clean help tailwind-install tailwind-dev tailwind-build tailwind-watch arch-check arch-check-file arch-check-object test-db-up test-db-down test-db-reset test-db-status celery-worker celery-beat celery-dev flower celery-status celery-purge urls infra-check test-affected test-affected-dry
# Detect OS
ifeq ($(OS),Windows_NT)
@@ -249,24 +249,21 @@ ifdef frontend
endif
endif
# All testpaths (central + module tests)
TEST_PATHS := tests/ app/modules/tenancy/tests/ app/modules/catalog/tests/ app/modules/billing/tests/ app/modules/messaging/tests/ app/modules/orders/tests/ app/modules/customers/tests/ app/modules/marketplace/tests/ app/modules/inventory/tests/ app/modules/loyalty/tests/
test:
@docker compose -f docker-compose.test.yml up -d 2>/dev/null || true
@sleep 2
TEST_DATABASE_URL="$(TEST_DB_URL)" \
$(PYTHON) -m pytest $(TEST_PATHS) -v $(MARKER_EXPR)
$(PYTHON) -m pytest -v $(MARKER_EXPR)
test-unit:
@docker compose -f docker-compose.test.yml up -d 2>/dev/null || true
@sleep 2
ifdef module
TEST_DATABASE_URL="$(TEST_DB_URL)" \
$(PYTHON) -m pytest $(TEST_PATHS) -v -m "unit and $(module)"
$(PYTHON) -m pytest -v -m "unit and $(module)"
else
TEST_DATABASE_URL="$(TEST_DB_URL)" \
$(PYTHON) -m pytest $(TEST_PATHS) -v -m unit
$(PYTHON) -m pytest -v -m unit
endif
test-integration:
@@ -274,29 +271,38 @@ test-integration:
@sleep 2
ifdef module
TEST_DATABASE_URL="$(TEST_DB_URL)" \
$(PYTHON) -m pytest $(TEST_PATHS) -v -m "integration and $(module)"
$(PYTHON) -m pytest -v -m "integration and $(module)"
else
TEST_DATABASE_URL="$(TEST_DB_URL)" \
$(PYTHON) -m pytest $(TEST_PATHS) -v -m integration
$(PYTHON) -m pytest -v -m integration
endif
test-coverage:
@docker compose -f docker-compose.test.yml up -d 2>/dev/null || true
@sleep 2
TEST_DATABASE_URL="$(TEST_DB_URL)" \
$(PYTHON) -m pytest $(TEST_PATHS) --cov=app --cov=models --cov=utils --cov=middleware --cov-report=html --cov-report=term-missing $(MARKER_EXPR)
$(PYTHON) -m pytest --cov=app --cov=models --cov=utils --cov=middleware --cov-report=html --cov-report=term-missing $(MARKER_EXPR)
test-affected:
@docker compose -f docker-compose.test.yml up -d 2>/dev/null || true
@sleep 2
TEST_DATABASE_URL="$(TEST_DB_URL)" \
$(PYTHON) scripts/tests/run_affected_tests.py $(AFFECTED_ARGS)
test-affected-dry:
@$(PYTHON) scripts/tests/run_affected_tests.py --dry-run $(AFFECTED_ARGS)
test-fast:
@docker compose -f docker-compose.test.yml up -d 2>/dev/null || true
@sleep 2
TEST_DATABASE_URL="$(TEST_DB_URL)" \
$(PYTHON) -m pytest $(TEST_PATHS) -v -m "not slow" $(MARKER_EXPR)
$(PYTHON) -m pytest -v -m "not slow" $(MARKER_EXPR)
test-slow:
@docker compose -f docker-compose.test.yml up -d 2>/dev/null || true
@sleep 2
TEST_DATABASE_URL="$(TEST_DB_URL)" \
$(PYTHON) -m pytest $(TEST_PATHS) -v -m slow
$(PYTHON) -m pytest -v -m slow
# =============================================================================
# CODE QUALITY
@@ -569,6 +575,8 @@ help:
@echo " test-unit module=X - Run unit tests for module X"
@echo " test-integration - Run integration tests only"
@echo " test-coverage - Run tests with coverage"
@echo " test-affected - Run tests for modules affected by changes"
@echo " test-affected-dry - Show affected modules without running tests"
@echo " test-fast - Run fast tests only"
@echo " test frontend=storefront - Run storefront tests"
@echo ""