Update .travis.yml

Add diffing of failure logs
pull/486/head
Andrew Scheller 2014-04-15 02:29:59 +01:00
rodzic e31a8222f2
commit 9b5a9d41dc
1 zmienionych plików z 3 dodań i 0 usunięć

Wyświetl plik

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