diff options
author | Damien George <damien.p.george@gmail.com> | 2020-03-04 14:27:52 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2020-03-10 02:22:34 +1100 |
commit | bd506515670e80d939c8a6834f7ab2ab5b43af21 (patch) | |
tree | 43e39054b19d0d71b9872aa68149296db5973049 | |
parent | 8f44c0dd16df33fb0e3e9de1701787fdd0d67e57 (diff) |
travis: Run multi_net tests as part of coverage job.
-rw-r--r-- | .travis.yml | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml index 2a993009d..45badc79a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -100,6 +100,7 @@ jobs: - (cd tests && MICROPY_CPYTHON3=python3 MICROPY_MICROPYTHON=../ports/unix/micropython-coverage ./run-tests --emit native) - (cd tests && MICROPY_CPYTHON3=python3 MICROPY_MICROPYTHON=../ports/unix/micropython-coverage ./run-tests --via-mpy -d basics float micropython) - (cd tests && MICROPY_CPYTHON3=python3 MICROPY_MICROPYTHON=../ports/unix/micropython-coverage ./run-tests --via-mpy --emit native -d basics float micropython) + - (cd tests && MICROPY_CPYTHON3=python3 MICROPY_MICROPYTHON=../ports/unix/micropython-coverage ./run-multitests.py multi_net/*.py) # test when input script comes from stdin - cat tests/basics/0prelim.py | ports/unix/micropython-coverage | grep -q 'abc' # test building native mpy modules |