mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-03-01 16:39:11 +00:00
This commit moves the Jira rest integration tests from the smoke-test-watcher-with-mustache project to the smoke-test-watcher project. Original commit: elastic/x-pack-elasticsearch@c6b03d557f
21 lines
671 B
Groovy
21 lines
671 B
Groovy
apply plugin: 'elasticsearch.standalone-rest-test'
|
|
apply plugin: 'elasticsearch.rest-test'
|
|
|
|
dependencies {
|
|
testCompile project(path: ':x-pack:elasticsearch', configuration: 'runtime')
|
|
testCompile project(path: ':modules:lang-mustache', configuration: 'runtime')
|
|
}
|
|
|
|
integTest {
|
|
cluster {
|
|
plugin ':x-pack:elasticsearch'
|
|
setting 'xpack.security.enabled', 'false'
|
|
setting 'xpack.monitoring.enabled', 'false'
|
|
setting 'http.port', '9400'
|
|
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'
|
|
}
|
|
}
|