diff options
author | Andrew Scheller <github@loowis.durge.org> | 2014-04-15 02:42:23 +0100 |
---|---|---|
committer | Andrew Scheller <github@loowis.durge.org> | 2014-04-15 02:42:23 +0100 |
commit | c29a0ac56a916fe14d443086a2987c0bb65b8749 (patch) | |
tree | b1d7d84e84372a4c306fe39e6abbf57a5fe7ebc0 | |
parent | 9b5a9d41dc061b51ebc1dd969df3ce9b5f7bde91 (diff) | |
download | micropython-c29a0ac56a916fe14d443086a2987c0bb65b8749.tar.gz micropython-c29a0ac56a916fe14d443086a2987c0bb65b8749.zip |
Update .travis.yml
Seems like I'd inadvertently created invalid YAML!
-rw-r--r-- | .travis.yml | 3 |
1 files changed, 1 insertions, 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 |