diff options
author | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-06-26 00:05:53 +0300 |
---|---|---|
committer | Paul Sokolovsky <pfalcon@users.sourceforge.net> | 2014-06-26 00:05:53 +0300 |
commit | 8e01291c18c8221ee7d8e457afc8c7a4fc94ef3f (patch) | |
tree | 573f8736bd69fbdc91a95ca6223cb7ee85748658 | |
parent | 7a2f16694907fbe8bf5445e30d061f4bb1f9517a (diff) | |
download | micropython-8e01291c18c8221ee7d8e457afc8c7a4fc94ef3f.tar.gz micropython-8e01291c18c8221ee7d8e457afc8c7a4fc94ef3f.zip |
travis: Use unified diffs for failed tests.
-rw-r--r-- | .travis.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.travis.yml b/.travis.yml index e6c12b9677..489cceaa27 100644 --- a/.travis.yml +++ b/.travis.yml @@ -20,4 +20,4 @@ script: - (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) + - (cd tests && for exp in *.exp; do testbase=$(basename $exp .exp); echo -e "\nFAILURE $testbase"; diff -u $testbase.exp $testbase.out; done) |