From 505951fae19f3564cb6004f33a2380c702a848df Mon Sep 17 00:00:00 2001 From: kramstrom Date: Fri, 12 Jul 2024 14:10:10 -0400 Subject: [PATCH] skip windows --- test/cli_test.py | 1 + 1 file changed, 1 insertion(+) diff --git a/test/cli_test.py b/test/cli_test.py index 26e316d6b..14e66d2e1 100644 --- a/test/cli_test.py +++ b/test/cli_test.py @@ -440,6 +440,7 @@ def test_shell_cmd(servicer, set_env_client, test_dir, mock_shell_pty): @pytest.mark.parametrize(("platform", "expected_exit_code"), [("win32", 1), ("cygwin", 1), ("linux", 0), ("darwin", 0)]) +@skip_windows("modal shell is not supported on Windows.") def test_shell_cmd_fails_on_windows( servicer, set_env_client, mock_shell_pty, monkeypatch, platform, expected_exit_code ):