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.
dev.tty.legacy_tiocsti
0
1 parent b71a1b8 commit 919cc8bCopy full SHA for 919cc8b
src/trio/_tests/test_repl.py
@@ -244,8 +244,11 @@ def test_main_entrypoint() -> None:
244
assert repl.returncode == 0
245
246
247
-@pytest.mark.skipif(sys.platform == "win32", reason="uses PTYs")
+# TODO: skip this based on sysctls? Or Linux version?
248
+@pytest.mark.skipif(True, reason="the ioctl we use is disabled in CI")
249
def test_ki_newline_injection() -> None:
250
+ # TODO: we want to remove this functionality, eg by using vendored
251
+ # pyrepls.
252
assert sys.platform != "win32"
253
254
import pty
0 commit comments