diff options
| author | Damien George <damien@micropython.org> | 2024-05-27 11:45:59 +1000 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2024-05-27 11:45:59 +1000 |
| commit | fbf811474af1c5a7c4c03743b11b248151199a36 (patch) | |
| tree | 6e57faf5fd99306d1575755ee4fb0f9779749d5b | |
| parent | 5d07d0c7b0b2b3601d69a74da837d77e65941f75 (diff) | |
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>
| -rwxr-xr-x | tools/ci.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/ci.sh b/tools/ci.sh index ad5e79c4a..bac225caa 100755 --- a/tools/ci.sh +++ b/tools/ci.sh @@ -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 { |
