From 0e8568f20ce61fc84bdf3eed2c30ebdd86b3e909 Mon Sep 17 00:00:00 2001 From: Alex Mukha Date: Thu, 9 Jul 2020 13:21:39 +0100 Subject: [PATCH] Add Integration tests --- .travis.yml | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/.travis.yml b/.travis.yml index c251f4d26..1d9760a31 100644 --- a/.travis.yml +++ b/.travis.yml @@ -76,4 +76,10 @@ jobs: - ./e2e-test/helpers/start-alfresco.sh "e2e-test/target/docker-resources" "quay.io/alfresco/insight-engine:latest" - ./e2e-test/helpers/wait-service-to-start.sh script: - - travis_wait 60 mvn clean test -f e2e-test/pom.xml -DsuiteXmlFile=src/test/resources/InsightSuite.xml -Dtest.exclude=Not_InsightEngine,CONFIG_Master_Slave,Not_Bamboo,AGS_302,CONFIG_Sharding_DB_ID_RANGE,CONFIG_Sharding -Dalfresco.server=localhost -Dalfresco.port=8081 -Dmaven.test.failure.ignore=true \ No newline at end of file + - travis_wait 60 mvn clean test -f e2e-test/pom.xml -DsuiteXmlFile=src/test/resources/InsightSuite.xml -Dtest.exclude=Not_InsightEngine,CONFIG_Master_Slave,Not_Bamboo,AGS_302,CONFIG_Sharding_DB_ID_RANGE,CONFIG_Sharding -Dalfresco.server=localhost -Dalfresco.port=8081 -Dmaven.test.failure.ignore=true + - name: "Integration tests" + jdk: openjdk11 + install: + - travis_retry travis_wait 60 mvn --batch-mode -q clean package -DskipTests + script: + - travis_wait 60 mvn -q verify -Dtest=foo -DfailIfNoTests=false -Dtests.timezone=UTC -Dmaven.test.failure.ignore=true -pl '"!:search-analytics-e2e-test"' \ No newline at end of file