apply plugin: 'elasticsearch.testclusters' apply plugin: 'elasticsearch.standalone-rest-test' apply plugin: 'elasticsearch.rest-test' dependencies { testCompile project(':x-pack:plugin:core') testCompile project(path: xpackModule('watcher'), configuration: 'runtime') } String pagerDutyServiceKey = System.getenv('pagerduty_service_api_key') restResources { restApi { includeXpack 'watcher' } } if (!pagerDutyServiceKey) { integTest.enabled = false testingConventions.enabled = false } else { testClusters.integTest { testDistribution = 'DEFAULT' setting 'xpack.security.enabled', 'false' setting 'xpack.monitoring.enabled', 'false' setting 'xpack.ml.enabled', 'false' setting 'xpack.license.self_generated.type', 'trial' setting 'logger.org.elasticsearch.xpack.watcher', 'DEBUG' keystore 'xpack.notification.pagerduty.account.test_account.secure_service_api_key', pagerDutyServiceKey } }