Commit 9f28ebf4 authored by Jason Madden's avatar Jason Madden

Skip the test on windows since the stdlib does weird things with universal newlines.

parent 41bb1fd7
......@@ -85,6 +85,8 @@ class Test(greentest.TestCase):
else:
self.assertEqual(stderr, b"pineapple")
@greentest.skipIf(subprocess.mswindows,
"Windows does weird things here")
def test_communicate_universal(self):
# Native string all the things. See https://github.com/gevent/gevent/issues/1039
p = subprocess.Popen(
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment