Skip to content

Commit 674ab78

Browse files
committed
extend timeout from 35s to 60s since PyPy tests are slow
1 parent f186ae1 commit 674ab78

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

test/test_admin_integration.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -181,7 +181,7 @@ def consumer_thread(i, group_id):
181181
threads[i] = t
182182

183183
try:
184-
timeout = time() + 35
184+
timeout = time() + 60
185185
while True:
186186
for c in range(num_consumers):
187187

test/test_consumer_group.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ def consumer_thread(i):
7171
threads[i] = t
7272

7373
try:
74-
timeout = time.time() + 35
74+
timeout = time.time() + 60
7575
while True:
7676
for c in range(num_consumers):
7777

0 commit comments

Comments
 (0)