Update Makefile to run tests with coverage across 16 threads for improved performance

This commit is contained in:
2025-11-10 12:30:52 +01:00
parent 1f45ca2b50
commit 2532d1ac3c

View File

@@ -65,7 +65,7 @@ test:
test-cov:
@echo "🧪 Running tests with coverage..."
@IS_TEST=True PYTHONPATH=. $(PYTEST) --cov=app --cov-report=term-missing --cov-report=html -n 0
@IS_TEST=True PYTHONPATH=. $(PYTEST) --cov=app --cov-report=term-missing --cov-report=html -n 16
@echo "📊 Coverage report generated in htmlcov/index.html"
# ============================================================================