Details
-
Improvement
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
None
-
None
Description
The Travis CI config contains:
.travis.yml
install: mvn install ... > mvn_install.log || cat mvn_install.log
This always returns true because cat succeeds, so the tests aren't aborted by the maven return value. This should be: mvn install || ( cat log && false )
Attachments
Issue Links
- links to