Skip to content

Commit

Permalink
Increase some timeouts.
Browse files Browse the repository at this point in the history
  • Loading branch information
ionelmc committed Jul 1, 2024
1 parent 54e8750 commit 9a4a0da
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -1189,6 +1189,7 @@ jobs:
- name: test
env:
TOXPYTHON: '${{ matrix.toxpython }}'
MANHOLE_TEST_TIMEOUT: 40
run: >
tox -e ${{ matrix.tox_env }} -v
finish:
Expand Down
1 change: 1 addition & 0 deletions ci/templates/.github/workflows/github-actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ jobs:
- name: test
env:
TOXPYTHON: '{{ '${{ matrix.toxpython }}' }}'
MANHOLE_TEST_TIMEOUT: 40
run: >
tox -e {{ '${{ matrix.tox_env }}' }} -v
finish:
Expand Down
2 changes: 1 addition & 1 deletion tests/test_manhole_cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -132,4 +132,4 @@ def test_unbuffered():
with dump_on_error(client.read):
wait_for_strings(client.read, TIMEOUT, '(ManholeConsole)', '>>>')
for i in range(5):
wait_for_strings(client.read, 1, f'line{i}')
wait_for_strings(client.read, 5, f'line{i}')

0 comments on commit 9a4a0da

Please sign in to comment.