Skip to content

Commit

Permalink
Add internalClusterTest to check task (elastic#53444)
Browse files Browse the repository at this point in the history
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
  • Loading branch information
rjernst committed Mar 17, 2020
1 parent 95f9cb1 commit d1e411c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 0 deletions.
1 change: 1 addition & 0 deletions x-pack/plugin/core/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -152,3 +152,4 @@ integTest.enabled = false
task internalClusterTest(type: Test) {
include "**/*IT.class"
}
check.dependsOn internalClusterTest
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@
*/
package org.elasticsearch.xpack.core.rest.action;

import org.apache.lucene.util.LuceneTestCase;
import org.elasticsearch.action.admin.indices.analyze.AnalyzeAction.AnalyzeToken;
import org.elasticsearch.action.admin.indices.analyze.AnalyzeAction.Response;
import org.elasticsearch.action.search.SearchResponse;
Expand Down Expand Up @@ -39,6 +40,7 @@
import static org.elasticsearch.test.hamcrest.ElasticsearchAssertions.assertHitCount;
import static org.elasticsearch.test.hamcrest.ElasticsearchAssertions.assertNoFailures;

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

@Override
Expand Down

0 comments on commit d1e411c

Please sign in to comment.