X-Git-Url: http://source.jalview.org/gitweb/?a=blobdiff_plain;f=build.gradle;h=2b9cf4e54b7e045746ea4d2ecf4a753307619a3f;hb=bcfc7c04c50b67ff066a534ee0b8baa53af4cf79;hp=fdca6a3912a75843e630dff926697e2f55fefb6d;hpb=705635fb3c936cfc7c61f4d4e697ddb1d2b589b7;p=jalview.git diff --git a/build.gradle b/build.gradle index fdca6a3..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,10 +849,13 @@ test { useTestNG() { includeGroups testngGroups + excludeGroups testngExcludedGroups preserveOrder true useDefaultListeners=true } + maxHeapSize = "1024m" + workingDir = jalviewDir //systemProperties 'clover.jar' System.properties.clover.jar sourceCompatibility = compile_source_compatibility