From e2aed2cd27dac221779608a1c299918ce9677929 Mon Sep 17 00:00:00 2001 From: beorn7 Date: Tue, 7 Oct 2025 16:34:59 +0200 Subject: [PATCH] tsdb: Disable more tests on MS Windows Signed-off-by: beorn7 --- tsdb/compact_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tsdb/compact_test.go b/tsdb/compact_test.go index 8a4d19c179..18c76a4597 100644 --- a/tsdb/compact_test.go +++ b/tsdb/compact_test.go @@ -1988,7 +1988,7 @@ func TestDelayedCompaction(t *testing.T) { for _, c := range cases { t.Run(c.name, func(t *testing.T) { - if c.compactionDelay > 0 && runtime.GOOS == "windows" { + if runtime.GOOS == "windows" { t.Skip("Time imprecision on windows makes the test flaky, see https://github.com/prometheus/prometheus/issues/16450") } t.Parallel()