1
0
mirror of https://github.com/GNS3/gns3-server synced 2024-11-24 09:18:08 +00:00

Remove problematic test when run on Travis.

This commit is contained in:
grossmj 2018-11-18 00:08:40 +07:00
parent 53f3821d41
commit c7b8c347d7

View File

@ -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):