From 279f51d7d27adab0ffbf4db263f839eaf89cb659 Mon Sep 17 00:00:00 2001 From: Damien George Date: Sat, 12 Jul 2025 01:08:17 +1000 Subject: [PATCH] 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 --- tools/ci.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) 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 {