From c29a0ac56a916fe14d443086a2987c0bb65b8749 Mon Sep 17 00:00:00 2001 From: Andrew Scheller Date: Tue, 15 Apr 2014 02:42:23 +0100 Subject: [PATCH] Update .travis.yml Seems like I'd inadvertently created invalid YAML! --- .travis.yml | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/.travis.yml b/.travis.yml index 330ca3c64d..62dd656ccf 100644 --- a/.travis.yml +++ b/.travis.yml @@ -11,5 +11,4 @@ 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 +after_failure: for exp in *.exp; do testbase=$(basename $exp .exp); echo -e "\nFAILURE $testbase"; diff $testbase.exp $testbase.out; done