prometheus: disable failing test on aarch64 (#426484)

This commit is contained in:
Franz Pletz
2025-07-19 08:23:21 +02:00
committed by GitHub
+4
View File
@@ -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; {