From c7b8c347d7fea71108b2985a7be830a630b53525 Mon Sep 17 00:00:00 2001 From: grossmj Date: Sun, 18 Nov 2018 00:08:40 +0700 Subject: [PATCH] Remove problematic test when run on Travis. --- tests/utils/test_asyncio.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/tests/utils/test_asyncio.py b/tests/utils/test_asyncio.py index 004704f1..6254432f 100644 --- a/tests/utils/test_asyncio.py +++ b/tests/utils/test_asyncio.py @@ -45,15 +45,6 @@ def test_exception_wait_run_in_executor(loop): result = loop.run_until_complete(asyncio.ensure_future(exec)) -@pytest.mark.skipif(sys.platform.startswith("win"), reason="Not supported on Windows") -def test_subprocess_check_output(loop, tmpdir, restore_original_path): - - path = str(tmpdir / "test") - exec = subprocess_check_output("echo", "-n", path) - result = loop.run_until_complete(asyncio.ensure_future(exec)) - assert result == path - - def test_wait_for_process_termination(loop): if sys.version_info >= (3, 5):