From d213dae9bddf494358fac0314e25be9d46da8827 Mon Sep 17 00:00:00 2001 From: FKouhai Date: Sat, 8 Nov 2025 01:54:14 +0100 Subject: [PATCH] hygg: skip test_stdin_processing on darwin --- pkgs/by-name/hy/hygg/package.nix | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/pkgs/by-name/hy/hygg/package.nix b/pkgs/by-name/hy/hygg/package.nix index ff1901af28cd..00f166181a7e 100644 --- a/pkgs/by-name/hy/hygg/package.nix +++ b/pkgs/by-name/hy/hygg/package.nix @@ -28,7 +28,11 @@ rustPlatform.buildRustPackage (finalAttrs: { # e2e test fails since it cant find the input pdf file "--skip=tests::test_end_to_end" "--skip=test_epub_processing" - ]; + ] + ## Skipping this test due to the high variability of its outcome + ## When the package was merged the test was passing but on hydra its not + ## Look at PR #448907 + ++ (if pkgs.stdenv.isDarwin then [ "--skip=test_stdin_processing" ] else [ ]); doInstallCheck = true; nativeInstallCheckInputs = [ versionCheckHook ];