Skip to content

Commit

Permalink
extend timeout from 35s to 60s since PyPy tests are slow
Browse files Browse the repository at this point in the history
  • Loading branch information
wbarnha committed Aug 2, 2023
1 parent f186ae1 commit 674ab78
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion test/test_admin_integration.py
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ def consumer_thread(i, group_id):
threads[i] = t

try:
timeout = time() + 35
timeout = time() + 60
while True:
for c in range(num_consumers):

Expand Down
2 changes: 1 addition & 1 deletion test/test_consumer_group.py
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ def consumer_thread(i):
threads[i] = t

try:
timeout = time.time() + 35
timeout = time.time() + 60
while True:
for c in range(num_consumers):

Expand Down

0 comments on commit 674ab78

Please sign in to comment.