From 2532d1ac3c977b2868cf5172e124cae095eaa218 Mon Sep 17 00:00:00 2001 From: Felipe Cardoso Date: Mon, 10 Nov 2025 12:30:52 +0100 Subject: [PATCH] Update `Makefile` to run tests with coverage across 16 threads for improved performance --- backend/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/Makefile b/backend/Makefile index 640390b..8ef3981 100644 --- a/backend/Makefile +++ b/backend/Makefile @@ -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" # ============================================================================