-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Closed
Description
The Travis CI config contains:
install: mvn install ... > mvn_install.log || cat mvn_install.logThis 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 )
Reporter: Ryan Blue / @rdblue
Assignee: Ryan Blue / @rdblue
PRs and other links:
Note: This issue was originally created as PARQUET-245. Please see the migration documentation for further details.