From 1272ebe908084fb6d2dcff22c806e4b50b5d4d9a Mon Sep 17 00:00:00 2001 From: Gaetan Lepage Date: Sat, 11 Oct 2025 14:47:34 +0000 Subject: [PATCH] openlist: skip failing test on x86_64-darwin --- pkgs/by-name/op/openlist/package.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/by-name/op/openlist/package.nix b/pkgs/by-name/op/openlist/package.nix index f12ac9f7eaab..0c316517fc24 100644 --- a/pkgs/by-name/op/openlist/package.nix +++ b/pkgs/by-name/op/openlist/package.nix @@ -64,6 +64,12 @@ buildGoModule (finalAttrs: { "TestWebsocketAll" "TestWebsocketCaller" "TestDownloadOrder" + ] + ++ lib.optionals (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64) [ + # --- FAIL: TestTask_Cancel (0.01s) + # task_test.go:48: task is running + # task_test.go:61: task status not canceled: canceling + "TestTask_Cancel" ]; in [ "-skip=^${builtins.concatStringsSep "$|^" skippedTests}$" ];