X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=build.gradle;h=2b9cf4e54b7e045746ea4d2ecf4a753307619a3f;hb=52b853bb28c1d410230b2044e50816362dc352c9;hp=8dcbc41d6916bd6c68d8c2680864ac6140414ff8;hpb=e1fcf786ed9611e55bd0dd2d7052ba519aaecb7e;p=jalview.git diff --git a/build.gradle b/build.gradle index 8dcbc41..2b9cf4e 100644 --- a/build.gradle +++ b/build.gradle @@ -136,6 +136,10 @@ ext { getdownChannelName = string("${bamboo_planKey}/${JAVA_VERSION}") getdownAppBase = string("${bamboo_channelbase}/${bamboo_planKey}${bamboo_getdown_channel_suffix}/${JAVA_VERSION}") jvlChannelName += "_${getdownChannelName}" + // automatically add the test group Not-bamboo for exclusion + if ("".equals(testngExcludedGroups)) { + testngExcludedGroups = "Not-bamboo" + } break case "RELEASE": @@ -845,6 +849,7 @@ test { useTestNG() { includeGroups testngGroups + excludeGroups testngExcludedGroups preserveOrder true useDefaultListeners=true }