Skip to content

Commit 8d47b94

Browse files
committed
Mute only dense vector tests
1 parent eef5c14 commit 8d47b94

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

muted-tests.yml

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -567,8 +567,6 @@ tests:
567567
- class: org.elasticsearch.xpack.inference.qa.mixed.CohereServiceMixedIT
568568
method: testCohereEmbeddings
569569
issue: https://github.com/elastic/elasticsearch/issues/130010
570-
- class: org.elasticsearch.xpack.esql.qa.mixed.MixedClusterEsqlSpecIT
571-
issue: https://github.com/elastic/elasticsearch/issues/128224
572570
- class: org.elasticsearch.xpack.autoscaling.storage.ReactiveStorageIT
573571
method: testScaleDuringSplitOrClone
574572
issue: https://github.com/elastic/elasticsearch/issues/130044

x-pack/plugin/esql/qa/testFixtures/src/main/java/org/elasticsearch/xpack/esql/CsvTestsDataLoader.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,8 @@ public class CsvTestsDataLoader {
212212
Map.entry(SEMANTIC_TEXT.indexName, SEMANTIC_TEXT),
213213
Map.entry(LOGS.indexName, LOGS),
214214
Map.entry(MV_TEXT.indexName, MV_TEXT),
215-
Map.entry(DENSE_VECTOR.indexName, DENSE_VECTOR),
215+
// Awaitsfix: https://github.com/elastic/elasticsearch/issues/130085
216+
// Map.entry(DENSE_VECTOR.indexName, DENSE_VECTOR),
216217
Map.entry(COLORS.indexName, COLORS)
217218
);
218219

x-pack/plugin/esql/qa/testFixtures/src/main/resources/dense_vector.csv-spec

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,8 @@
1-
1+
# All tests skipped for now due to issues in bwc tests
2+
# https://github.com/elastic/elasticsearch/issues/130085
23
retrieveDenseVectorData
34
required_capability: dense_vector_field_type
5+
required_capability: awaitsfix
46

57
FROM dense_vector
68
| KEEP id, vector
@@ -16,6 +18,7 @@ id:l | vector:dense_vector
1618

1719
denseVectorWithEval
1820
required_capability: dense_vector_field_type
21+
required_capability: awaitsfix
1922

2023
FROM dense_vector
2124
| EVAL v = vector
@@ -32,6 +35,7 @@ id:l | v:dense_vector
3235

3336
denseVectorWithRenameAndDrop
3437
required_capability: dense_vector_field_type
38+
required_capability: awaitsfix
3539

3640
FROM dense_vector
3741
| EVAL v = vector

0 commit comments

Comments
 (0)