Skip to content

Commit f2c70b7

Browse files
committed
Make CCR QA tests build again (#33113)
Welp, I broke this. I merged a change to auto-discover the CCR QA tests by making :x-pack:plugin:ccr:check auto-discover the check tasks in the qa sub-project. Yet, the check tasks for these sub-projects did not depend on the necessary test tasks (as we were previously doing this directly from the ccr build file. This commit fixes this!
1 parent 9739a5c commit f2c70b7

File tree

3 files changed

+3
-0
lines changed

3 files changed

+3
-0
lines changed

x-pack/plugin/ccr/qa/multi-cluster-with-incompatible-license/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,4 +36,5 @@ followClusterTestRunner {
3636
finalizedBy 'leaderClusterTestCluster#stop'
3737
}
3838

39+
check.dependsOn followClusterTest
3940
test.enabled = false

x-pack/plugin/ccr/qa/multi-cluster-with-security/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,4 +71,5 @@ followClusterTestRunner {
7171
finalizedBy 'leaderClusterTestCluster#stop'
7272
}
7373

74+
check.dependsOn followClusterTest
7475
test.enabled = false // no unit tests for multi-cluster-search, only the rest integration test

x-pack/plugin/ccr/qa/multi-cluster/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -37,4 +37,5 @@ followClusterTestRunner {
3737
finalizedBy 'leaderClusterTestCluster#stop'
3838
}
3939

40+
check.dependsOn followClusterTest
4041
test.enabled = false // no unit tests for multi-cluster-search, only the rest integration test

0 commit comments

Comments
 (0)