Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / applications / terminal-emulators / kitty / disable-test_ssh_bootstrap_with_different_launchers.patch
blob584815b9e07a22771a2438626f20fc643018acdc
1 diff --git a/kitty_tests/ssh.py b/kitty_tests/ssh.py
2 index 1f424146..d3cc191b 100644
3 --- a/kitty_tests/ssh.py
4 +++ b/kitty_tests/ssh.py
5 @@ -166,7 +166,7 @@ def test_ssh_bootstrap_with_different_launchers(self):
6 for sh in self.all_possible_sh:
7 if sh == 'sh' or 'python' in sh:
8 q = shutil.which(launcher)
9 - if q:
10 + if q and not 'zsh' in q:
11 with self.subTest(sh=sh, launcher=q), tempfile.TemporaryDirectory() as tdir:
12 self.check_bootstrap(sh, tdir, test_script='env; exit 0', SHELL_INTEGRATION_VALUE='', launcher=q)