Disable TestingConventions Check in Reindex Module (#41100) (#41110)

* This is currently failing with:

```
Test classes are not included in any enabled task (:modules:reindex:test):
  * org.elasticsearch.client.documentation.ReindexDocumentationIT
  * org.elasticsearch.index.reindex.ManyDocumentsIT
  * org.elasticsearch.index.reindex.ReindexClientYamlTestSuiteIT
  * org.elasticsearch.index.reindex.ReindexWithoutContentIT
  * org.elasticsearch.index.reindex.remote.ReindexFromOldRemoteIT
```

* Same fix as in #38546
This commit is contained in:
Armin Braun 2019-04-11 13:47:14 +02:00 committed by GitHub
parent a6dc20a09d
commit 9cfe194131
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -97,6 +97,7 @@ dependencies {
// Issue tracked in https://github.com/elastic/elasticsearch/issues/40904 // Issue tracked in https://github.com/elastic/elasticsearch/issues/40904
if (project.inFipsJvm) { if (project.inFipsJvm) {
testingConventions.enabled = false
integTest.enabled = false integTest.enabled = false
} }