We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 921b77a commit 9669ef6Copy full SHA for 9669ef6
travis.sh
@@ -1,10 +1,10 @@
1
#!/bin/sh
2
3
if [ "${TRAVIS_PULL_REQUEST}" = "false" ]; then
4
- echo '$TRAVIS_PULL_REQUEST is false, running unit tests'
5
- mvn clean install -Dmaven.test.skip=true && mvn clean test
6
-else
7
- echo '$TRAVIS_PULL_REQUEST is not false ($TRAVIS_PULL_REQUEST), running integration tests'
+ echo '$TRAVIS_PULL_REQUEST is false, running all tests'
8
mvn clean install -Dmaven.test.skip=true && mvn clean verify cobertura:cobertura-integration-test coveralls:report
9
codecov
+else
+ echo '$TRAVIS_PULL_REQUEST is not false ($TRAVIS_PULL_REQUEST), running unit tests'
+ mvn clean install -Dmaven.test.skip=true && mvn clean test
10
fi
0 commit comments