Skip to content

Commit

Permalink
Skip another subprocess test that is flaky on twisted
Browse files Browse the repository at this point in the history
  • Loading branch information
bdarnell committed May 22, 2016
1 parent 8d1d89b commit 2c85f31
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions tornado/test/process_test.py
Expand Up @@ -179,6 +179,9 @@ def test_close_stdin(self):
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,
Expand Down

0 comments on commit 2c85f31

Please sign in to comment.