Skip to content

Commit 7623baf

Browse files
committed
Skip subprocess tests on windows
1 parent f4f5c9b commit 7623baf

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

tests/test_aio_subprocess.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,8 @@
1313

1414
from . import utils as test_utils
1515

16+
pytestmark = pytest.mark.skipif(sys.platform == 'win32',
17+
reason="Not supported on Windows")
1618

1719
class MySubprocessProtocol(asyncio.SubprocessProtocol):
1820
def __init__(self, loop):

0 commit comments

Comments
 (0)