Ryan Blue created PARQUET-245:
---------------------------------
Summary: Travis CI runs tests even if build fails
Key: PARQUET-245
URL: https://issues.apache.org/jira/browse/PARQUET-245
Project: Parquet
Issue Type: Improvement
Components: parquet-mr
Reporter: Ryan Blue
Assignee: Ryan Blue
The Travis CI config contains:
{code:title=.travis.yml}
install: mvn install ... > mvn_install.log || cat mvn_install.log
{code}
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
)}}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)