From 738e29b03dc8f4d413116e00a4b0c76957be99a6 Mon Sep 17 00:00:00 2001 From: "Sean T. Allen" Date: Mon, 13 Jul 2026 23:57:09 -0400 Subject: [PATCH] Shuffle test order Randomizing test order surfaces hidden dependencies between tests. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 2538dde..db4b184 100644 --- a/Makefile +++ b/Makefile @@ -49,7 +49,7 @@ PARALLEL := $(shell n=$$(nproc); echo $$(( n < 4 ? n : 4 ))) test: unit-tests examples unit-tests: $(tests_binary) - $^ --exclude=integration --sequential + $^ --exclude=integration --sequential --shuffle test-one: $(tests_binary) $^ --only="$(t)"