Skip to content

Commit 86e1e25

Browse files
authored
[ML][Transform] muting testSchema test on windows (#70634)
test mute for: #70532
1 parent 784c12e commit 86e1e25

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

test/framework/src/main/java/org/elasticsearch/test/AbstractSchemaValidationTestCase.java

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@
2020
import com.networknt.schema.SpecVersion;
2121
import com.networknt.schema.ValidationMessage;
2222

23+
import org.apache.lucene.util.Constants;
2324
import org.elasticsearch.common.bytes.BytesReference;
2425
import org.elasticsearch.common.io.PathUtils;
2526
import org.elasticsearch.common.xcontent.ToXContent;
@@ -44,6 +45,8 @@ public abstract class AbstractSchemaValidationTestCase<T extends ToXContent> ext
4445
protected static final int NUMBER_OF_TEST_RUNS = 20;
4546

4647
public final void testSchema() throws IOException {
48+
assumeFalse("Test is currently failing on windows: see https://github.com/elastic/elasticsearch/issues/70532", Constants.WINDOWS);
49+
4750
ObjectMapper mapper = new ObjectMapper();
4851
SchemaValidatorsConfig config = new SchemaValidatorsConfig();
4952
JsonSchemaFactory factory = initializeSchemaFactory();

0 commit comments

Comments
 (0)