From 203bc98804dd8ad60476b531f29b6658dcffadcf Mon Sep 17 00:00:00 2001 From: Damien George Date: Tue, 15 Apr 2014 12:52:59 +0100 Subject: [PATCH] travis: Move diffing back to after_failure command. Need to click on icon at right to see the output. --- .travis.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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)