ci: don't run the "thread" tests

This part of the unix micropython port isn't related to any
functionality used in CircuitPython, and at least one of the tests
(thread_gc) fails with non-negligible frequency.

Reasons to revisit this in the future would include if/when thread
support is added in CircuitPython.
This commit is contained in:
Jeff Epler 2019-10-21 20:58:07 -05:00
parent 84c0d6cdf8
commit 4d53dd29a3
1 changed files with 0 additions and 3 deletions

View File

@ -52,9 +52,6 @@ jobs:
done done
working-directory: tests working-directory: tests
if: failure() if: failure()
- name: Test threads
run: MICROPY_CPYTHON3=python3.5 MICROPY_MICROPYTHON=../ports/unix/micropython_coverage ./run-tests -j1 -d thread
working-directory: tests
- name: Native Tests - name: Native Tests
run: MICROPY_CPYTHON3=python3.5 MICROPY_MICROPYTHON=../ports/unix/micropython_coverage ./run-tests -j1 --emit native run: MICROPY_CPYTHON3=python3.5 MICROPY_MICROPYTHON=../ports/unix/micropython_coverage ./run-tests -j1 --emit native
working-directory: tests working-directory: tests