Display after-failure test logs on CI scripts

This commit is contained in:
Snaipe 2015-07-31 09:48:47 +02:00
parent 9fa44c1b1c
commit 4901e8b029
2 changed files with 2 additions and 2 deletions

View file

@ -18,7 +18,7 @@ script:
after_success:
- make coveralls
after_failure:
- cat $(find samples -iname '*.log') /dev/null
- cat build/Testing/Temporary/LastTest.log
env:
global:
secure: bzZcWjdqoTgceC40kEBucx7NuWYJPk+rxgF3UJJDXi+ijQAFYPv70p5eVsGR6rfc+XgqXCxcUFQtuL4ZVt7QEfVk1ZOJITNeHbKIeKaEYS4nX8mFf+CBeEm9bJGZ04KiQJdJu5mzzAHvXbW7roGXDGWe1Bjnk5wwA+dNUCa7H04=

View file

@ -31,7 +31,7 @@ build_script:
- 'make'
test_script:
- 'make test'
- 'make test || bash -lc "cat $APPVEYOR_BUILD_FOLDER/build/Testing/Temporary/LastTest.log"'
after_test:
- 'make coveralls'