Skip to content

Commit 9a4a0da

Browse files
committed
Increase some timeouts.
1 parent 54e8750 commit 9a4a0da

File tree

3 files changed

+3
-1
lines changed

3 files changed

+3
-1
lines changed

.github/workflows/github-actions.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1189,6 +1189,7 @@ jobs:
11891189
- name: test
11901190
env:
11911191
TOXPYTHON: '${{ matrix.toxpython }}'
1192+
MANHOLE_TEST_TIMEOUT: 40
11921193
run: >
11931194
tox -e ${{ matrix.tox_env }} -v
11941195
finish:

ci/templates/.github/workflows/github-actions.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -60,6 +60,7 @@ jobs:
6060
- name: test
6161
env:
6262
TOXPYTHON: '{{ '${{ matrix.toxpython }}' }}'
63+
MANHOLE_TEST_TIMEOUT: 40
6364
run: >
6465
tox -e {{ '${{ matrix.tox_env }}' }} -v
6566
finish:

tests/test_manhole_cli.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,4 +132,4 @@ def test_unbuffered():
132132
with dump_on_error(client.read):
133133
wait_for_strings(client.read, TIMEOUT, '(ManholeConsole)', '>>>')
134134
for i in range(5):
135-
wait_for_strings(client.read, 1, f'line{i}')
135+
wait_for_strings(client.read, 5, f'line{i}')

0 commit comments

Comments
 (0)