We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8c00f5 commit bb94301Copy full SHA for bb94301
1 file changed
tests/python/test_subprocess.py
@@ -3,6 +3,7 @@
3
import unittest
4
import warnings
5
from unittest import mock
6
+import pytest
7
8
import asyncio
9
from asyncio import base_subprocess
@@ -192,6 +193,7 @@ def prepare_broken_pipe_test(self):
192
193
proc = self.loop.run_until_complete(create)
194
return (proc, large_data)
195
196
+ @pytest.mark.xfail(msg="XXX doesn't always trigger")
197
def test_stdin_broken_pipe(self):
198
proc, large_data = self.prepare_broken_pipe_test()
199
0 commit comments