Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Skip cmd.script tests on windows #67174

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions tests/integration/modules/test_cmdmod.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,6 +225,7 @@ def test_blacklist_glob(self):
)

@pytest.mark.slow_test
@pytest.mark.skip_on_windows
def test_script(self):
"""
cmd.script
Expand All @@ -235,6 +236,7 @@ def test_script(self):
self.assertEqual(ret["stdout"], args)

@pytest.mark.slow_test
@pytest.mark.skip_on_windows
def test_script_query_string(self):
"""
cmd.script
Expand All @@ -245,6 +247,7 @@ def test_script_query_string(self):
self.assertEqual(ret["stdout"], args)

@pytest.mark.slow_test
@pytest.mark.skip_on_windows
def test_script_retcode(self):
"""
cmd.script_retcode
Expand All @@ -254,6 +257,7 @@ def test_script_retcode(self):
self.assertEqual(ret, 0)

@pytest.mark.slow_test
@pytest.mark.skip_on_windows
def test_script_cwd(self):
"""
cmd.script with cwd
Expand All @@ -267,6 +271,7 @@ def test_script_cwd(self):
self.assertEqual(ret["stdout"], args)

@pytest.mark.slow_test
@pytest.mark.skip_on_windows
def test_script_cwd_with_space(self):
"""
cmd.script with cwd
Expand Down
Loading