From 29e60d352ebe002dca2283ef3c0698d14b5be8db Mon Sep 17 00:00:00 2001 From: Ben Darnell Date: Fri, 7 Jun 2024 21:25:29 -0400 Subject: [PATCH] process_test: Remove reference to deleted LayeredTwistedIOLoop --- tornado/test/process_test.py | 9 --------- 1 file changed, 9 deletions(-) diff --git a/tornado/test/process_test.py b/tornado/test/process_test.py index 1e5b391b63..8122384207 100644 --- a/tornado/test/process_test.py +++ b/tornado/test/process_test.py @@ -141,15 +141,6 @@ def term_and_wait(self, subproc): @gen_test def test_subprocess(self): - if IOLoop.configured_class().__name__.endswith("LayeredTwistedIOLoop"): - # This test fails non-deterministically with LayeredTwistedIOLoop. - # (the read_until('\n') returns '\n' instead of 'hello\n') - # This probably indicates a problem with either TornadoReactor - # or TwistedIOLoop, but I haven't been able to track it down - # and for now this is just causing spurious travis-ci failures. - raise unittest.SkipTest( - "Subprocess tests not compatible with " "LayeredTwistedIOLoop" - ) # In Python 3.13.0b1, the new repl logs an error on exit if terminfo # doesn't exist, the -i flag is used, and stdin is not a tty. This bug may # have been fixed in beta 2, so for now we disable the new repl in this test