diff options
author | Todd Leonhardt <todd.leonhardt@gmail.com> | 2019-06-28 00:01:45 -0400 |
---|---|---|
committer | Todd Leonhardt <todd.leonhardt@gmail.com> | 2019-06-28 00:01:45 -0400 |
commit | 06c9adea8f0a0136afc48e2784ce89d694c6dd37 (patch) | |
tree | 14158eda378dbcb197d38a957f7b4bb9bdf31858 /tests/test_utils.py | |
parent | f91ccf2bb28531f9d1dee551314cb091fa57df74 (diff) | |
download | cmd2-git-06c9adea8f0a0136afc48e2784ce89d694c6dd37.tar.gz |
Moved RESET to end of color dictionaries and skip a test on Mac since it is unreliable on Azure DevOps CI
Diffstat (limited to 'tests/test_utils.py')
-rw-r--r-- | tests/test_utils.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/test_utils.py b/tests/test_utils.py index db43c292..262e6c54 100644 --- a/tests/test_utils.py +++ b/tests/test_utils.py @@ -245,7 +245,8 @@ def test_proc_reader_terminate(pr_none): else: assert ret_code == -signal.SIGTERM -@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_wait(pr_none): assert pr_none._proc.poll() is None pr_none.wait() |