diff options
| author | Damien George | 2021-03-11 16:09:27 +1100 |
|---|---|---|
| committer | Damien George | 2021-03-12 19:56:09 +1100 |
| commit | 6129b8e401c36cc68e0f7ba8180da27a40d17621 (patch) | |
| tree | f9922a1f34db804d3700ca0570827c2a8762314e /tools | |
| parent | b24fcd7aec4b34064e9d9016d417d4ca3cc925cc (diff) | |
tests: Rename run-tests to run-tests.py for consistency.
Signed-off-by: Damien George <damien@micropython.org>
Diffstat (limited to 'tools')
| -rwxr-xr-x | tools/ci.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/ci.sh b/tools/ci.sh index a815e9483..53cf7f878 100755 --- a/tools/ci.sh +++ b/tools/ci.sh @@ -306,7 +306,7 @@ function ci_unix_minimal_build { } function ci_unix_minimal_run_tests { - (cd tests && MICROPY_CPYTHON3=python3 MICROPY_MICROPYTHON=../ports/unix/micropython-minimal ./run-tests -e exception_chain -e self_type_check -e subclass_native_init -d basics) + (cd tests && MICROPY_CPYTHON3=python3 MICROPY_MICROPYTHON=../ports/unix/micropython-minimal ./run-tests.py -e exception_chain -e self_type_check -e subclass_native_init -d basics) } function ci_unix_standard_build { @@ -441,7 +441,7 @@ function ci_unix_macos_run_tests { # - OSX has poor time resolution and these uasyncio tests do not have correct output # - import_pkg7 has a problem with relative imports # - urandom_basic has a problem with getrandbits(0) - (cd tests && ./run-tests --exclude 'uasyncio_(basic|heaplock|lock|wait_task)' --exclude 'import_pkg7.py' --exclude 'urandom_basic.py') + (cd tests && ./run-tests.py --exclude 'uasyncio_(basic|heaplock|lock|wait_task)' --exclude 'import_pkg7.py' --exclude 'urandom_basic.py') } ######################################################################################## |
