summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2014-04-15 12:52:59 +0100
committerDamien George <damien.p.george@gmail.com>2014-04-15 12:52:59 +0100
commit203bc98804dd8ad60476b531f29b6658dcffadcf (patch)
tree75569ed16c90c7e4081e4ef3e5caafe8a622830f
parentb013aea80927ae85461f382c601f8ac40c06497a (diff)
downloadmicropython-203bc98804dd8ad60476b531f29b6658dcffadcf.tar.gz
micropython-203bc98804dd8ad60476b531f29b6658dcffadcf.zip
travis: Move diffing back to after_failure command.
Need to click on icon at right to see the output.
-rw-r--r--.travis.yml5
1 files changed, 4 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml
index 32250edf71..54d18ecd5c 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -14,4 +14,7 @@ script:
- make -C unix-cpy CC=gcc-4.7
- make -C bare-arm
- make -C stmhal
- - (cd tests && MICROPY_CPYTHON3=python3.3 ./run-tests || for exp in *.exp; do testbase=$(basename $exp .exp); echo -e "\nFAILURE $testbase"; diff $testbase.exp $testbase.out; done && exit 1)
+ - (cd tests && MICROPY_CPYTHON3=python3.3 ./run-tests)
+
+after_failure:
+ - (cd tests && for exp in *.exp; do testbase=$(basename $exp .exp); echo -e "\nFAILURE $testbase"; diff $testbase.exp $testbase.out; done)