diff options
| author | Damien George <damien@micropython.org> | 2025-07-12 01:08:17 +1000 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2025-07-23 11:10:11 +1000 |
| commit | 279f51d7d27adab0ffbf4db263f839eaf89cb659 (patch) | |
| tree | 38b82a5611824597e06104268d4f61f97e95b5bf | |
| parent | f835b1626d797c98b6603c1a58e270aaa8c27053 (diff) | |
tools/ci.sh: Skip thread/stress_heap.py test on macOS test run.
This test passes sometimes and fails other times. Eventually that should
be fixed, but for now just skip this test.
Signed-off-by: Damien George <damien@micropython.org>
| -rwxr-xr-x | tools/ci.sh | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/ci.sh b/tools/ci.sh index 99168cff6..dbfbaa54f 100755 --- a/tools/ci.sh +++ b/tools/ci.sh @@ -780,7 +780,8 @@ function ci_unix_macos_run_tests { # Issues with macOS tests: # - float_parse and float_parse_doubleprec parse/print floats out by a few mantissa bits # - ffi_callback crashes for an unknown reason - (cd tests && MICROPY_MICROPYTHON=../ports/unix/build-standard/micropython ./run-tests.py --exclude '(float_parse|float_parse_doubleprec|ffi_callback).py') + # - thread/stress_heap.py is flaky + (cd tests && MICROPY_MICROPYTHON=../ports/unix/build-standard/micropython ./run-tests.py --exclude '(float_parse|float_parse_doubleprec|ffi_callback|thread/stress_heap).py') } function ci_unix_qemu_mips_setup { |
