Skip to content

Commit 3608be6

Browse files
authored
Add internalClusterTest to check task (elastic#53444)
This commit adds internalClusterTest in xpack core to run as part of check. This was accidentally removed in a refactoring. Other xpack modules already do this, but core was left out. This commit also mutes 2 tests that currently fail. closes elastic#53407
1 parent 41e3b4a commit 3608be6

File tree

2 files changed

+3
-0
lines changed

2 files changed

+3
-0
lines changed

x-pack/plugin/core/build.gradle

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -153,3 +153,4 @@ integTest.enabled = false
153153
task internalClusterTest(type: Test) {
154154
include "**/*IT.class"
155155
}
156+
check.dependsOn internalClusterTest

x-pack/plugin/core/src/test/java/org/elasticsearch/xpack/core/rest/action/ReloadSynonymAnalyzerIT.java

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@
55
*/
66
package org.elasticsearch.xpack.core.rest.action;
77

8+
import org.apache.lucene.util.LuceneTestCase;
89
import org.elasticsearch.action.admin.indices.analyze.AnalyzeAction.AnalyzeToken;
910
import org.elasticsearch.action.admin.indices.analyze.AnalyzeAction.Response;
1011
import org.elasticsearch.action.search.SearchResponse;
@@ -39,6 +40,7 @@
3940
import static org.elasticsearch.test.hamcrest.ElasticsearchAssertions.assertHitCount;
4041
import static org.elasticsearch.test.hamcrest.ElasticsearchAssertions.assertNoFailures;
4142

43+
@LuceneTestCase.AwaitsFix(bugUrl = "https://github.com/elastic/elasticsearch/issues/53443")
4244
public class ReloadSynonymAnalyzerIT extends ESIntegTestCase {
4345

4446
@Override

0 commit comments

Comments
 (0)