Update .travis.yml

Add diffing of failure logs
travis
Andrew Scheller 2014-04-15 02:29:59 +01:00
parent e31a8222f2
commit 9b5a9d41dc
1 changed files with 3 additions and 0 deletions

View File

@ -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