summaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
authorAndrew Scheller <github@loowis.durge.org>2014-04-15 02:29:59 +0100
committerAndrew Scheller <github@loowis.durge.org>2014-04-15 02:29:59 +0100
commit9b5a9d41dc061b51ebc1dd969df3ce9b5f7bde91 (patch)
tree7b05827482f167a3c24c255b704ca7228a555362
parente31a8222f2b8844c01e2224140aa6d41ab5dcf29 (diff)
downloadmicropython-9b5a9d41dc061b51ebc1dd969df3ce9b5f7bde91.tar.gz
micropython-9b5a9d41dc061b51ebc1dd969df3ce9b5f7bde91.zip
Update .travis.yml
Add diffing of failure logs
-rw-r--r--.travis.yml3
1 files changed, 3 insertions, 0 deletions
diff --git a/.travis.yml b/.travis.yml
index 0595d24383..330ca3c64d 100644
--- a/.travis.yml
+++ b/.travis.yml
@@ -10,3 +10,6 @@ before_script:
script:
- make -C unix
- cd tests && MICROPY_CPYTHON3=python3.3 ./run-tests
+
+after_failure:
+ - for exp in *.exp; do testbase=$(basename $exp .exp); echo -e "\nFAILURE: $testbase"; diff $testbase.exp $testbase.out; done