tools/ci.sh: Simplify selection of natmod tests to run.

The `run-natmodtests.py` script now properly excludes tests that don't use
the corresponding native module.

Signed-off-by: Damien George <damien@micropython.org>
This commit is contained in:
Damien George 2024-05-27 11:45:59 +10:00
parent 5d07d0c7b0
commit fbf811474a

View File

@ -517,7 +517,7 @@ function ci_unix_coverage_run_mpy_merge_tests {
function ci_unix_coverage_run_native_mpy_tests {
MICROPYPATH=examples/natmod/features2 ./ports/unix/build-coverage/micropython -m features2
(cd tests && ./run-natmodtests.py "$@" extmod/{btree*,deflate*,framebuf*,heapq*,random*,re*}.py)
(cd tests && ./run-natmodtests.py "$@" extmod/*.py)
}
function ci_unix_32bit_setup {