mirror of
https://github.com/python/cpython.git
synced 2025-08-04 00:48:58 +00:00
regrtest: log timeout at startup (GH-19514)
Reduce also worker timeout.
This commit is contained in:
parent
62f75fe3dd
commit
4cf65a630a
2 changed files with 15 additions and 4 deletions
|
@ -394,7 +394,10 @@ class Regrtest:
|
|||
|
||||
save_modules = sys.modules.keys()
|
||||
|
||||
self.log("Run tests sequentially")
|
||||
msg = "Run tests sequentially"
|
||||
if self.ns.timeout:
|
||||
msg += " (timeout: %s)" % format_duration(self.ns.timeout)
|
||||
self.log(msg)
|
||||
|
||||
previous_test = None
|
||||
for test_index, test_name in enumerate(self.tests, 1):
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue