From 0dbd6ae7ad0153b7d0baaa5c2c87bb14537d5134 Mon Sep 17 00:00:00 2001 From: Frank Scholten Date: Fri, 4 Nov 2016 23:45:22 +0100 Subject: [PATCH] Travis should run the integration tests. * Ideally, there should be a pipeline with a normal build and integration tests but it seems Travis does not support this yet: https://github.com/travis-ci/travis-ci/issues/413 --- travis.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/travis.sh b/travis.sh index 07d7f278..41b59d63 100755 --- a/travis.sh +++ b/travis.sh @@ -16,5 +16,5 @@ if [ "${TRAVIS_PULL_REQUEST}" == "false" ] && [ "${TRAVIS_BRANCH}" == "master" ] GH_SONARQ_PARAMS="jacocoTestReport sonarqube -Dsonar.host.url=$SQ_URL -Dsonar.jdbc.url=$SQ_JDBC_URL -Dsonar.jdbc.driverClassName=org.postgresql.Driver -Dsonar.jdbc.user=$SQ_JDBC_USER -Dsonar.jdbc.password=$SQ_JDBC_PASSWORD" fi -./gradlew --info --stacktrace clean build $GH_SONARQ_PARAMS +./gradlew --info --stacktrace clean build integrationTest $GH_SONARQ_PARAMS