From a487e362a10f318da123083d21df3daeabfc5c2e Mon Sep 17 00:00:00 2001 From: zowoq <59103226+zowoq@users.noreply.github.com> Date: Mon, 6 Jun 2022 16:19:31 +1000 Subject: [PATCH] fish: fix failing test --- pkgs/shells/fish/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pkgs/shells/fish/default.nix b/pkgs/shells/fish/default.nix index 7207d9b947c0..8fc79ecfbb23 100644 --- a/pkgs/shells/fish/default.nix +++ b/pkgs/shells/fish/default.nix @@ -190,8 +190,8 @@ let rm tests/pexpects/exit.py rm tests/pexpects/job_summary.py rm tests/pexpects/signals.py - '' + lib.optionalString (stdenv.isLinux && stdenv.isAarch64) '' - # pexpect tests are flaky on aarch64-linux + '' + lib.optionalString stdenv.isLinux '' + # pexpect tests are flaky on aarch64-linux (also x86_64-linux) # See https://github.com/fish-shell/fish-shell/issues/8789 rm tests/pexpects/exit_handlers.py '';