diff options
author | Damien George <damien.p.george@gmail.com> | 2014-04-15 12:05:26 +0100 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2014-04-15 12:05:26 +0100 |
commit | fd1c7b9d48ef4a059d702667ff45aeb955c9e6f0 (patch) | |
tree | 911d1d966ae2c5b2d289f2ea591105c1b27df241 | |
parent | e8ecca21ff370b9fe3d32ba7f6d1b6110c58b7a8 (diff) | |
download | micropython-fd1c7b9d48ef4a059d702667ff45aeb955c9e6f0.tar.gz micropython-fd1c7b9d48ef4a059d702667ff45aeb955c9e6f0.zip |
travis: Continue to debug tests output.
Seems that any commands in after_failure do not have stdout...
-rw-r--r-- | .travis.yml | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/.travis.yml b/.travis.yml index 8220a3e01b..7209e3638d 100644 --- a/.travis.yml +++ b/.travis.yml @@ -15,10 +15,6 @@ script: - make -C bare-arm - make -C stmhal - cd tests && MICROPY_CPYTHON3=python3.3 ./run-tests - -after_failure: - - pwd - - echo 'test' - cat tests/memoryerror.py.exp - - (cat tests/memoryerror.py.out) + - cat tests/memoryerror.py.out - cd tests && for exp in *.exp; do testbase=$(basename $exp .exp); echo -e "\nFAILURE $testbase"; diff $testbase.exp $testbase.out; done |