Run spotless and exclude checkstyle on rest-api-spec module (#1462)
Signed-off-by: Owais Kazi <owaiskazi19@gmail.com>
This commit is contained in:
parent
294ad0eb6f
commit
f4bdb94463
|
@ -27,7 +27,9 @@
|
|||
<suppress files="libs" checks="." />
|
||||
<!-- Excludes checkstyle run on modules module -->
|
||||
<suppress files="modules" checks="." />
|
||||
|
||||
<!-- Excludes checkstyle run on rest-api-spec module -->
|
||||
<suppress files="rest-api-spec" checks="." />
|
||||
|
||||
<!--
|
||||
Truly temporary suppressions suppression of snippets included in
|
||||
documentation that are so wide that they scroll.
|
||||
|
|
|
@ -78,7 +78,6 @@ def projectPathsToExclude = [
|
|||
':plugins:store-smb',
|
||||
':plugins:transport-nio',
|
||||
':qa:die-with-dignity',
|
||||
':rest-api-spec',
|
||||
':test:fixtures:azure-fixture',
|
||||
':test:fixtures:gcs-fixture',
|
||||
':test:fixtures:hdfs-fixture',
|
||||
|
|
|
@ -41,7 +41,7 @@ import org.opensearch.test.rest.yaml.OpenSearchClientYamlSuiteTestCase;
|
|||
|
||||
/** Rest integration test. Runs against a cluster started by {@code gradle integTest} */
|
||||
|
||||
//The default 20 minutes timeout isn't always enough, but Darwin CI hosts are incredibly slow...
|
||||
// The default 20 minutes timeout isn't always enough, but Darwin CI hosts are incredibly slow...
|
||||
@TimeoutSuite(millis = 40 * TimeUnits.MINUTE)
|
||||
public class ClientYamlTestSuiteIT extends OpenSearchClientYamlSuiteTestCase {
|
||||
public ClientYamlTestSuiteIT(ClientYamlTestCandidate testCandidate) {
|
||||
|
|
Loading…
Reference in New Issue