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.
1 parent acdf6b3 commit 1e24598Copy full SHA for 1e24598
test/t/conftest.py
@@ -272,6 +272,9 @@ def bash(request) -> pexpect.spawn:
272
dimensions=(24, 240),
273
# TODO? codec_errors="replace",
274
)
275
+ # See https://pexpect.readthedocs.io/en/stable/commonissues.html?highlight=delaybeforesend#timing-issue-with-send-and-sendline
276
+ # We don't need the delay, and it makes running the tests much slower.
277
+ bash.delaybeforesend = 0
278
bash.expect_exact(PS1)
279
280
# Load bashrc and bash_completion
0 commit comments