Mark integration test tasks with "big" node taint

This commit is contained in:
Ramzi El-Yafi 2019-12-13 10:08:51 +00:00
parent 3fc916fb6c
commit 575df97c52

View File

@ -606,6 +606,7 @@ task allParallelIntegrationTest(type: ParallelTestGroup) {
coresPerFork 5
memoryInGbPerFork 12
distribute DistributeTestsBy.METHOD
nodeTaints "big"
}
task allParallelUnitTest(type: ParallelTestGroup) {
podLogLevel PodLogLevel.INFO
@ -624,6 +625,7 @@ task allParallelUnitAndIntegrationTest(type: ParallelTestGroup) {
coresPerFork 6
memoryInGbPerFork 10
distribute DistributeTestsBy.METHOD
nodeTaints "big"
}
task parallelRegressionTest(type: ParallelTestGroup) {
testGroups "test", "integrationTest", "slowIntegrationTest", "smokeTest"
@ -632,6 +634,7 @@ task parallelRegressionTest(type: ParallelTestGroup) {
coresPerFork 6
memoryInGbPerFork 10
distribute DistributeTestsBy.METHOD
nodeTaints "big"
}
task allParallelSmokeTest(type: ParallelTestGroup) {
testGroups "slowIntegrationTest", "smokeTest"
@ -640,6 +643,7 @@ task allParallelSmokeTest(type: ParallelTestGroup) {
coresPerFork 6
memoryInGbPerFork 10
distribute DistributeTestsBy.CLASS
nodeTaints "big"
}
apply plugin: 'com.r3.testing.distributed-testing'
apply plugin: 'com.r3.testing.image-building'