From 3493fab65b1a9af986588e932c42f073d296f9d2 Mon Sep 17 00:00:00 2001 From: Jappie3 Date: Sat, 2 May 2026 23:10:58 +0200 Subject: [PATCH] prometheus: disable flaky TestDelayedCompaction --- pkgs/by-name/pr/prometheus/package.nix | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pkgs/by-name/pr/prometheus/package.nix b/pkgs/by-name/pr/prometheus/package.nix index 40cfe2fec8f0..7ab27fa8cefa 100644 --- a/pkgs/by-name/pr/prometheus/package.nix +++ b/pkgs/by-name/pr/prometheus/package.nix @@ -198,6 +198,10 @@ buildGoModule (finalAttrs: { checkFlags = [ # Skip for issue during TSDB compaction "-skip=TestBlockRanges" + # both are flaky and might fail when the builder is under load + # https://github.com/prometheus/prometheus/issues/16450 + "-skip=TestDelayedCompaction" + "-skip=TestHeadCompactionWhileScraping" ] ++ lib.optionals stdenv.hostPlatform.isAarch64 [ "-skip=TestEvaluations/testdata/aggregators.test"