From c5c068408a3370e33bb8ebe3c143e70108253b4b Mon Sep 17 00:00:00 2001 From: Holger Frey Date: Wed, 17 Feb 2021 10:06:46 +0100 Subject: [PATCH] globally randomizing test order on coverage --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0ebe7ee..b501f05 100644 --- a/Makefile +++ b/Makefile @@ -60,7 +60,7 @@ test: ## run tests quickly with the default Python pytest tests -x --disable-warnings --random-order --failed-first coverage: ## full test suite, check code coverage and open coverage report - pytest tests --random-order --cov=sensospot_data + pytest tests --random-order --random-order-bucket=global --cov=sensospot_data coverage html $(BROWSER) htmlcov/index.html