diff options
| author | Damien George <damien@micropython.org> | 2022-04-21 14:24:37 +1000 |
|---|---|---|
| committer | Damien George <damien@micropython.org> | 2022-04-21 14:25:17 +1000 |
| commit | 81c9219375a005e5fd1abee236733fa4c95b19da (patch) | |
| tree | 0fafa3cd16c79451377de65ba15650296117260b | |
| parent | ef1c2cdab0fbc2d71177d33281539dd88cea1904 (diff) | |
tools/ci.sh: Don't run uasyncio_gather test on macOS.
The timing on macOS makes this test unreliable.
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 0faf1bc71..7d68709ae 100755 --- a/tools/ci.sh +++ b/tools/ci.sh @@ -561,7 +561,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.py --exclude 'uasyncio_(basic|heaplock|lock|wait_task)' --exclude 'import_pkg7.py' --exclude 'urandom_basic.py') + (cd tests && ./run-tests.py --exclude 'uasyncio_(basic|gather|heaplock|lock|wait_task)' --exclude 'import_pkg7.py' --exclude 'urandom_basic.py') } function ci_unix_qemu_mips_setup { |
