From f77abb09888c6ea3f6d8dadb28de46c36f035459 Mon Sep 17 00:00:00 2001 From: Kevin Van Brunt Date: Tue, 16 Jul 2019 14:21:21 -0400 Subject: Skipping unit test on non-Windows because of unreliable behavior on TravisCI and Azure DevOps platforms --- tests/test_utils.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tests') 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() -- cgit v1.2.1