Skip to content

Commit

Permalink
PARQUET-245: Only run tests in Travis CI if build succeeds.
Browse files Browse the repository at this point in the history
Author: Ryan Blue <[email protected]>

Closes apache#167 from rdblue/PARQUET-245-fix-travis-ci and squashes the following commits:

ccdb0b1 [Ryan Blue] PARQUET-245: Add retry to Travis CI to fix maven downloads.
f1bb713 [Ryan Blue] PARQUET-245: Only run tests in Travis CI if build succeeds.
  • Loading branch information
rdblue committed Apr 28, 2015
1 parent 7c42398 commit 4f7c704
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,5 +27,5 @@ env:
- HADOOP_PROFILE=default
- HADOOP_PROFILE=hadoop-2

install: mvn install --batch-mode -DskipTests=true -Dmaven.javadoc.skip=true -Dsource.skip=true > mvn_install.log || cat mvn_install.log
install: mvn install --batch-mode -DskipTests=true -Dmaven.javadoc.skip=true -Dsource.skip=true > mvn_install.log || mvn install --batch-mode -DskipTests=true -Dmaven.javadoc.skip=true -Dsource.skip=true > mvn_install.log || (cat mvn_install.log && false)
script: mvn test -P $HADOOP_PROFILE

0 comments on commit 4f7c704

Please sign in to comment.