From f83b14cd30748101e274b0f76315e237dac7ecac Mon Sep 17 00:00:00 2001 From: Franz Pletz Date: Fri, 18 Jul 2025 22:51:42 +0200 Subject: [PATCH] prometheus: disable failing test on aarch64 --- 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 5fd7e2bf8632..6dc90385659e 100644 --- a/pkgs/by-name/pr/prometheus/package.nix +++ b/pkgs/by-name/pr/prometheus/package.nix @@ -129,6 +129,10 @@ buildGoModule (finalAttrs: { # Test mock data uses 64 bit data without an explicit (u)int64 doCheck = !(stdenv.hostPlatform.isDarwin || stdenv.hostPlatform.parsed.cpu.bits < 64); + checkFlags = lib.optionals stdenv.hostPlatform.isAarch64 [ + "-skip=TestEvaluations/testdata/aggregators.test" + ]; + passthru.tests = { inherit (nixosTests) prometheus; }; meta = with lib; {