From 015489a95723e36e7c3711987e3780c03bd5f014 Mon Sep 17 00:00:00 2001 From: Arne de Laat Date: Sat, 14 Sep 2024 22:29:32 +0100 Subject: [PATCH] Specify --shuffle after specific tests Otherwise specific tests are taken as seed for shuffle. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 0625cf50..ac3c64a8 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ test: coveragetests linttest doctest ansibletest .PHONY: unittests unittests: - coverage run ./manage.py test --shuffle $(tests) + coverage run ./manage.py test $(tests) --shuffle .PHONY: coveragetests coveragetests: unittests