We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 12775c3 commit 3be1f3dCopy full SHA for 3be1f3d
test/framework/src/main/java/org/opensearch/test/OpenSearchIntegTestCase.java
@@ -406,7 +406,7 @@ protected final void beforeInternal() throws Exception {
406
final Scope currentClusterScope = getCurrentClusterScope();
407
Callable<Void> setup = () -> {
408
cluster().beforeTest(random());
409
- cluster().wipe(excludeTemplates());
+ //cluster().wipe(excludeTemplates());
410
randomIndexTemplate();
411
return null;
412
};
@@ -2538,7 +2538,7 @@ protected static RestClient createRestClient(
2538
protected void setupSuiteScopeCluster() throws Exception {}
2539
2540
private static boolean isSuiteScopedTest(Class<?> clazz) {
2541
- return clazz.getAnnotation(SuiteScopeTestCase.class) != null;
+ return false;
2542
}
2543
2544
/**
0 commit comments