mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-02 08:59:09 +00:00
Adapts the Watcher REST tests so that they don't require a fixed http port anymore. Original commit: elastic/x-pack-elasticsearch@14919b16e7
18 lines
630 B
Groovy
18 lines
630 B
Groovy
apply plugin: 'elasticsearch.standalone-rest-test'
|
|
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
dependencies {
|
|
testCompile project(path: ':x-pack-elasticsearch:plugin', configuration: 'runtime')
|
|
testCompile project(path: ':modules:lang-mustache', configuration: 'runtime')
|
|
}
|
|
|
|
integTestCluster {
|
|
plugin ':x-pack-elasticsearch:plugin'
|
|
setting 'xpack.security.enabled', 'false'
|
|
setting 'xpack.monitoring.enabled', 'false'
|
|
setting 'script.inline', 'true'
|
|
setting 'script.stored', 'true'
|
|
// Need to allow more compilations per minute because of the integration tests
|
|
setting 'script.max_compilations_per_minute', '100'
|
|
}
|