Skip to content

Commit 1ff2178

Browse files
authored
Merge pull request #98 from AdamSaleh/disable_integration
Removing integration testing until AEROGEAR-2488 or AEROGEAR-2485
2 parents 5b90c23 + 24d967c commit 1ff2178

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

Jenkinsfile

+3-1
Original file line numberDiff line numberDiff line change
@@ -60,18 +60,20 @@ podTemplate(label: 'mobile-cli-go', cloud: "openshift", containers: [goSlaveCont
6060
sh "./mobile"
6161
}
6262

63-
stage ("Integration") {
63+
stage ("Integration (disabled)") {
6464
sh "oc project ${project}"
6565
sh "go test -timeout 30m -c ./integration"
6666
def labels = getPullRequestLabels {}
6767
def test_short = "-test.short"
68+
/* disabling the test run until either https://issues.jboss.org/browse/AEROGEAR-2485 or https://issues.jboss.org/browse/AEROGEAR-2488 is done
6869
if(labels.contains("run long tests")){
6970
test_short = ""
7071
print "Will run the full integration test-suite"
7172
} else {
7273
print "Will run the integration test-suite with -test.short flag"
7374
}
7475
sh "./integration.test ${test_short} -test.v -prefix=test-${sanitizeObjectName(env.BRANCH_NAME)}-build-$BUILD_NUMBER -namespace=`oc project -q` -executable=`pwd`/mobile"
76+
*/
7577
}
7678

7779
stage ("Archive") {

0 commit comments

Comments
 (0)