We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 640d723 commit d33c2dcCopy full SHA for d33c2dc
tests/test_utils.py
@@ -230,11 +230,11 @@ def pr_none():
230
# Start a long running process so we have time to run tests on it before it finishes
231
# Put the new process into a separate group so signals sent to it won't interfere with this process
232
if sys.platform.startswith('win'):
233
- command = 'timeout -t -1 /nobreak'
+ command = 'timeout -t 5 /nobreak'
234
creationflags = subprocess.CREATE_NEW_PROCESS_GROUP
235
start_new_session = False
236
else:
237
- command = 'sleep 10'
+ command = 'sleep 5'
238
creationflags = 0
239
start_new_session = True
240
0 commit comments