diff options
author | Damien George <damien.p.george@gmail.com> | 2019-02-25 00:20:05 +1100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2019-03-08 16:51:09 +1100 |
commit | 2bcb240b559ff440d7f008b93bb626f7d7f33cf3 (patch) | |
tree | ad015e1d0797a05efef67555f2505e64f5740b57 | |
parent | 69955238a23b0a9c6e8d1ba6cbacd81f986efa19 (diff) | |
download | micropython-2bcb240b559ff440d7f008b93bb626f7d7f33cf3.tar.gz micropython-2bcb240b559ff440d7f008b93bb626f7d7f33cf3.zip |
travis: Enable test for running native code via mpy.
-rw-r--r-- | .travis.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index be81d6aa23..0ba9a00223 100644 --- a/.travis.yml +++ b/.travis.yml @@ -66,7 +66,8 @@ jobs: - (cd tests && MICROPY_CPYTHON3=python3 MICROPY_MICROPYTHON=../ports/unix/micropython_coverage ./run-tests) - (cd tests && MICROPY_CPYTHON3=python3 MICROPY_MICROPYTHON=../ports/unix/micropython_coverage ./run-tests -d thread) - (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) + - (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) # test when input script comes from stdin - cat tests/basics/0prelim.py | ports/unix/micropython_coverage | grep -q 'abc' # run coveralls coverage analysis (try to, even if some builds/tests failed) |