lol

Merge pull request #185634 from virchau13/fix-kitty-tests-darwin

kitty: fix tests on darwin

authored by

Robert Scott and committed by
GitHub
0bb630d2 c4e83298

+17
+17
pkgs/applications/terminal-emulators/kitty/default.nix
··· 125 125 fish 126 126 ]; 127 127 128 + # skip failing tests due to darwin sandbox 129 + preCheck = if stdenv.isDarwin then '' 130 + substituteInPlace kitty_tests/file_transmission.py \ 131 + --replace test_file_get dont_test_file_get \ 132 + --replace test_path_mapping_receive dont_test_path_mapping_receive 133 + substituteInPlace kitty_tests/shell_integration.py \ 134 + --replace test_fish_integration dont_test_fish_integration 135 + substituteInPlace kitty_tests/open_actions.py \ 136 + --replace test_parsing_of_open_actions dont_test_parsing_of_open_actions 137 + substituteInPlace kitty_tests/ssh.py \ 138 + --replace test_ssh_connection_data dont_test_ssh_connection_data 139 + substituteInPlace kitty_tests/fonts.py \ 140 + --replace 'class Rendering(BaseTest)' 'class Rendering' 141 + '' else ""; 142 + 128 143 checkPhase = 129 144 let buildBinPath = 130 145 if stdenv.isDarwin ··· 132 147 else "linux-package/bin"; 133 148 in 134 149 '' 150 + runHook preCheck 151 + 135 152 # Fontconfig error: Cannot load default config file: No such file: (null) 136 153 export FONTCONFIG_FILE=${fontconfig.out}/etc/fonts/fonts.conf 137 154