mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-25 09:28:27 +00:00
SQL relies on being able to fetch information about fields from the cluster state and it'd be disasterous if that information wasn't available. This should catch that. Original commit: elastic/x-pack-elasticsearch@1a62747332
22 lines
712 B
Groovy
22 lines
712 B
Groovy
import org.elasticsearch.gradle.test.RunTask
|
|
|
|
apply plugin: 'elasticsearch.standalone-rest-test'
|
|
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
dependencies {
|
|
testCompile project(path: ':x-pack-elasticsearch:plugin', configuration: 'runtime')
|
|
testCompile project(path: ':x-pack-elasticsearch:plugin', configuration: 'testArtifacts')
|
|
testCompile project(path: ':modules:reindex')
|
|
}
|
|
|
|
// NOCOMMIT we should try this on multiple nodes
|
|
|
|
integTestCluster {
|
|
distribution = 'zip' // NOCOMMIT make double sure we want all the modules
|
|
numNodes = 2
|
|
plugin ':x-pack-elasticsearch:plugin'
|
|
setting 'xpack.ml.enabled', 'false'
|
|
setting 'xpack.monitoring.enabled', 'false'
|
|
setting 'xpack.security.enabled', 'false'
|
|
}
|