diff options
| author | Jeff Epler <jepler@gmail.com> | 2025-07-03 20:11:03 +0100 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2025-07-06 00:08:13 +1000 |
| commit | a8c2b917e2837541597f24f7220c8c73c16c2fa7 (patch) | |
| tree | affa4f58101be24b11630fd3b3f96d6001089f1b /tools | |
| parent | e415d03e7fd31af71c643a3d8f38a50e25fca0e7 (diff) | |
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>
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/ci.sh | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/ci.sh b/tools/ci.sh index 2f62f3efe..2f0b74242 100755 --- a/tools/ci.sh +++ b/tools/ci.sh @@ -625,7 +625,7 @@ function ci_unix_coverage_build { } function ci_unix_coverage_run_tests { - ci_unix_run_tests_full_helper coverage + MICROPY_TEST_TIMEOUT=60 ci_unix_run_tests_full_helper coverage } function ci_unix_coverage_run_mpy_merge_tests { @@ -745,7 +745,7 @@ function ci_unix_sanitize_undefined_build { } function ci_unix_sanitize_undefined_run_tests { - ci_unix_run_tests_full_helper coverage "${CI_UNIX_OPTS_SANITIZE_UNDEFINED[@]}" + MICROPY_TEST_TIMEOUT=60 ci_unix_run_tests_full_helper coverage "${CI_UNIX_OPTS_SANITIZE_UNDEFINED[@]}" } function ci_unix_sanitize_address_build { @@ -756,7 +756,7 @@ function ci_unix_sanitize_address_build { } function ci_unix_sanitize_address_run_tests { - ci_unix_run_tests_full_helper coverage "${CI_UNIX_OPTS_SANITIZE_ADDRESS[@]}" + MICROPY_TEST_TIMEOUT=60 ci_unix_run_tests_full_helper coverage "${CI_UNIX_OPTS_SANITIZE_ADDRESS[@]}" } function ci_unix_macos_build { |
