Skip to content

Add integration tests to verify CCS output #40038

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Mar 25, 2019
6 changes: 5 additions & 1 deletion qa/multi-cluster-search/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,10 @@ import org.elasticsearch.gradle.test.RestIntegTestTask

apply plugin: 'elasticsearch.standalone-test'

dependencies {
testCompile "org.elasticsearch.client:elasticsearch-rest-high-level-client:${version}"
}

task remoteClusterTest(type: RestIntegTestTask) {
mustRunAfter(precommit)
}
Expand Down Expand Up @@ -53,6 +57,6 @@ task integTest {
dependsOn = [mixedClusterTest]
}

unitTest.enabled = false // no unit tests for multi-cluster-search, only the rest integration test
unitTest.enabled = false // no unit tests for multi-cluster-search, only integration tests

check.dependsOn(integTest)
Loading