diff options
| author | Damien George <damien@micropython.org> | 2025-09-15 13:43:18 +1000 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2025-10-02 00:37:29 +1000 |
| commit | b2871e0d0aec0c3783fe4bad215fbd8a4d88e5fe (patch) | |
| tree | 9648c07413b38c1148bb41f8829064f421750b1d | |
| parent | 688016c6a2e75e062c4b55fe1f50e40db9252ba6 (diff) | |
tools/ci.sh: Enable the full test suite for unix minimal variant.
With all the preceeding improvements to the test suite, it's now possible
to just run `make VARIANT=minimal test` -- which is equivalent to just
`./run-tests.py` -- on the unix minimal variant.
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 b10f3d12d..a5555647b 100755 --- a/tools/ci.sh +++ b/tools/ci.sh @@ -631,7 +631,7 @@ function ci_unix_minimal_build { } function ci_unix_minimal_run_tests { - (cd tests && MICROPY_CPYTHON3=python3 MICROPY_MICROPYTHON=../ports/unix/build-minimal/micropython ./run-tests.py -e exception_chain -e self_type_check -e subclass_native_init -d basics) + make -C ports/unix VARIANT=minimal test } function ci_unix_standard_build { |
