You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@parquet.apache.org by "Ryan Blue (JIRA)" <ji...@apache.org> on 2015/04/07 22:24:14 UTC

[jira] [Created] (PARQUET-245) Travis CI runs tests even if build fails

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)