From: Ben Darnell Date: Sun, 22 May 2016 04:09:58 +0000 (-0400) Subject: Skip another subprocess test that is flaky on twisted X-Git-Tag: v4.4.0b1~17 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=2c85f31126b96f857d0dc38b5cd2192fc414bc99;p=thirdparty%2Ftornado.git Skip another subprocess test that is flaky on twisted --- diff --git a/tornado/test/process_test.py b/tornado/test/process_test.py index 58cc410b6..d5fff1706 100644 --- a/tornado/test/process_test.py +++ b/tornado/test/process_test.py @@ -179,6 +179,9 @@ class SubprocessTest(AsyncTestCase): self.assertEqual(data, b"\n") def test_stderr(self): + # This test is mysteriously flaky on twisted: it succeeds, but logs + # an error of EBADF on closing a file descriptor. + skip_if_twisted() subproc = Subprocess([sys.executable, '-u', '-c', r"import sys; sys.stderr.write('hello\n')"], stderr=Subprocess.STREAM,