mirror of
https://github.com/micropython/micropython.git
synced 2026-01-04 19:20:22 +01:00
tools/ci.sh: Increase test timeout to 60s in coverage jobs.
The additional overhead of the settrace profiler means that the `aes_stress.py` test was running too slowly on GitHub CI. Double the timeout to 60 seconds. Signed-off-by: Jeff Epler <jepler@gmail.com>
This commit is contained in:
committed by
Damien George
parent
e415d03e7f
commit
a8c2b917e2
@@ -16,7 +16,7 @@ import threading
|
||||
import tempfile
|
||||
|
||||
# Maximum time to run a PC-based test, in seconds.
|
||||
TEST_TIMEOUT = 30
|
||||
TEST_TIMEOUT = float(os.environ.get('MICROPY_TEST_TIMEOUT', 30))
|
||||
|
||||
# See stackoverflow.com/questions/2632199: __file__ nor sys.argv[0]
|
||||
# are guaranteed to always work, this one should though.
|
||||
|
||||
Reference in New Issue
Block a user