summaryrefslogtreecommitdiff
path: root/tests/test_utils.py
diff options
context:
space:
mode:
authorkotfu <kotfu@kotfu.net>2019-07-16 17:30:23 -0600
committerkotfu <kotfu@kotfu.net>2019-07-16 17:30:23 -0600
commitf3ae3e129c9205229922463fc5ef57cc413c0ab9 (patch)
treebfe8b7eec20592de74725e5298dec68799f7ebec /tests/test_utils.py
parenta8c4a65106ad6325adec5e662ee8a5397527dba5 (diff)
parentf77abb09888c6ea3f6d8dadb28de46c36f035459 (diff)
downloadcmd2-git-f3ae3e129c9205229922463fc5ef57cc413c0ab9.tar.gz
Merge branch 'master' into integrate_legacy_documentation
# Conflicts: # docs/features/history.rst
Diffstat (limited to 'tests/test_utils.py')
-rw-r--r--tests/test_utils.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_utils.py b/tests/test_utils.py
index 262e6c54..edb6ca68 100644
--- a/tests/test_utils.py
+++ b/tests/test_utils.py
@@ -234,7 +234,8 @@ def test_proc_reader_send_sigint(pr_none):
else:
assert ret_code == -signal.SIGINT
-@pytest.mark.skipif(sys.platform == 'linux', reason="Test doesn't work correctly on TravisCI")
+@pytest.mark.skipif(not sys.platform.startswith('win'),
+ reason="Test doesn't work correctly on TravisCI and is unreliable on Azure DevOps macOS")
def test_proc_reader_terminate(pr_none):
assert pr_none._proc.poll() is None
pr_none.terminate()