Skip to content

Commit

Permalink
Expand timeouts for initial scie setup.
Browse files Browse the repository at this point in the history
  • Loading branch information
jsirois committed Aug 3, 2024
1 parent 3a5eeab commit 8aec061
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/test_issue_2249.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,8 +93,8 @@ def assert_inspect(
process.expect_exact(
"{green_hello} 42".format(green_hello=colors.green("hello")).encode("utf-8"),
# The PyPy venv scies are quite slow to set up; so we extend the initial timeout
# for those.
timeout=pexpect_timeout * (5 if IS_PYPY and scie_args else 1),
# for those even more.
timeout=pexpect_timeout * (6 if IS_PYPY and scie_args else 3),
)
process.expect_exact(b">>>", timeout=pexpect_timeout)
process.sendline(b"print(colors.blue(bar))")
Expand Down

0 comments on commit 8aec061

Please sign in to comment.