summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorzowoq <59103226+zowoq@users.noreply.github.com>2022-06-06 16:19:31 +1000
committerzowoq <59103226+zowoq@users.noreply.github.com>2022-06-06 16:19:31 +1000
commita487e362a10f318da123083d21df3daeabfc5c2e (patch)
treeb1c847cf764a23bb625591c10b8ed9521b80b541 /pkgs/shells
parent9c7fe48d8d790de036d47a0288abf3dde40ded21 (diff)
downloadnixpkgs-a487e362a10f318da123083d21df3daeabfc5c2e.tar
nixpkgs-a487e362a10f318da123083d21df3daeabfc5c2e.tar.gz
nixpkgs-a487e362a10f318da123083d21df3daeabfc5c2e.tar.bz2
nixpkgs-a487e362a10f318da123083d21df3daeabfc5c2e.tar.lz
nixpkgs-a487e362a10f318da123083d21df3daeabfc5c2e.tar.xz
nixpkgs-a487e362a10f318da123083d21df3daeabfc5c2e.tar.zst
nixpkgs-a487e362a10f318da123083d21df3daeabfc5c2e.zip
fish: fix failing test
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/fish/default.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/shells/fish/default.nix b/pkgs/shells/fish/default.nix
index 7207d9b947c..8fc79ecfbb2 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
     '';