summary refs log tree commit diff
path: root/pkgs/applications/terminal-emulators
diff options
context:
space:
mode:
authorRobert Scott <code@humanleg.org.uk>2022-08-09 00:41:27 +0100
committerGitHub <noreply@github.com>2022-08-09 00:41:27 +0100
commit0bb630d2b325a72709accf0a22cd093718484e0b (patch)
tree173865221c291c55cd8f16978cce921c0c3c70fe /pkgs/applications/terminal-emulators
parentc4e832986f335abf8665788f4d56375d93ac8f33 (diff)
parent078ecdaf985ee6f3f6a26100e4b4fec484e0f980 (diff)
downloadnixpkgs-0bb630d2b325a72709accf0a22cd093718484e0b.tar
nixpkgs-0bb630d2b325a72709accf0a22cd093718484e0b.tar.gz
nixpkgs-0bb630d2b325a72709accf0a22cd093718484e0b.tar.bz2
nixpkgs-0bb630d2b325a72709accf0a22cd093718484e0b.tar.lz
nixpkgs-0bb630d2b325a72709accf0a22cd093718484e0b.tar.xz
nixpkgs-0bb630d2b325a72709accf0a22cd093718484e0b.tar.zst
nixpkgs-0bb630d2b325a72709accf0a22cd093718484e0b.zip
Merge pull request #185634 from virchau13/fix-kitty-tests-darwin
kitty: fix tests on darwin
Diffstat (limited to 'pkgs/applications/terminal-emulators')
-rw-r--r--pkgs/applications/terminal-emulators/kitty/default.nix17
1 files changed, 17 insertions, 0 deletions
diff --git a/pkgs/applications/terminal-emulators/kitty/default.nix b/pkgs/applications/terminal-emulators/kitty/default.nix
index e818f4a71fa..28dad82fe16 100644
--- a/pkgs/applications/terminal-emulators/kitty/default.nix
+++ b/pkgs/applications/terminal-emulators/kitty/default.nix
@@ -125,6 +125,21 @@ buildPythonApplication rec {
     fish
   ];
 
+  # skip failing tests due to darwin sandbox
+  preCheck = if stdenv.isDarwin then ''
+    substituteInPlace kitty_tests/file_transmission.py \
+      --replace test_file_get dont_test_file_get \
+      --replace test_path_mapping_receive dont_test_path_mapping_receive
+    substituteInPlace kitty_tests/shell_integration.py \
+      --replace test_fish_integration dont_test_fish_integration
+    substituteInPlace kitty_tests/open_actions.py \
+      --replace test_parsing_of_open_actions dont_test_parsing_of_open_actions
+    substituteInPlace kitty_tests/ssh.py \
+      --replace test_ssh_connection_data dont_test_ssh_connection_data
+    substituteInPlace kitty_tests/fonts.py \
+      --replace 'class Rendering(BaseTest)' 'class Rendering'
+  '' else "";
+
   checkPhase =
     let buildBinPath =
       if stdenv.isDarwin
@@ -132,6 +147,8 @@ buildPythonApplication rec {
         else "linux-package/bin";
     in
     ''
+      runHook preCheck
+
       # Fontconfig error: Cannot load default config file: No such file: (null)
       export FONTCONFIG_FILE=${fontconfig.out}/etc/fonts/fonts.conf