Skip to content

Commit 4513e6a

Browse files
committed
Update skip list
1 parent 6a396a6 commit 4513e6a

File tree

1 file changed

+32
-7
lines changed
  • internal/build/cmd/generate/commands/gentests

1 file changed

+32
-7
lines changed

internal/build/cmd/generate/commands/gentests/skips.go

Lines changed: 32 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,9 @@ package gentests
1919

2020
import (
2121
"fmt"
22-
"gopkg.in/yaml.v2"
2322
"strings"
23+
24+
"gopkg.in/yaml.v2"
2425
)
2526

2627
var skipTests map[string][]string
@@ -80,8 +81,12 @@ var skipFiles = []string{
8081
"update/100_synthetic_source.yml",
8182
"tsdb/160_nested_fields.yml",
8283
"tsdb/90_unsupported_operations.yml",
84+
"cluster.component_template/.*.yml",
85+
"indices.put_index_template/.*.yml",
86+
"ml/forecast.yml",
8387
".*inference/.*.yml", // incompatible inference tests
8488
".*mustache/.*.yml", // incompatible mustache tests
89+
"data_stream/240_data_stream_settings.yml",
8590
}
8691

8792
// TODO: Comments into descriptions for `Skip()`
@@ -466,12 +471,6 @@ data_streams/10_data_stream_resolvability.yml:
466471
data_stream/230_data_stream_options.yml:
467472
- Test partially resetting failure store options in template composition
468473
469-
data_stream/240_data_stream_settings.yml:
470-
- Test single data stream
471-
- Test dry run
472-
- Test null out settings
473-
- Test null out settings component templates only
474-
475474
# Error: constant 9223372036854775808 overflows int (https://play.golang.org/p/7pUdz-_Pdom)
476475
unsigned_long/10_basic.yml:
477476
unsigned_long/20_null_value.yml:
@@ -662,4 +661,30 @@ search.vectors/41_knn_search_half_byte_quantized.yml:
662661
tsdb/25_id_generation.yml:
663662
- delete over _bulk
664663
664+
665+
# Data stream mappings tests failing in Go test suite
666+
data_stream/250_data_stream_mappings.yml:
667+
- "Test single data stream"
668+
- "Test mappings component templates only"
669+
670+
# Data streams stats failing for multiple data streams scenario
671+
data_stream/120_data_streams_stats.yml:
672+
- "Multiple data stream"
673+
674+
# Search vectors synthetic dense vectors failures (include and update cases)
675+
search.vectors/240_source_synthetic_dense_vectors.yml:
676+
- "include synthetic vectors"
677+
- "Bulk partial update with synthetic vectors"
678+
- "Partial update with synthetic vectors"
679+
680+
# Search vectors synthetic sparse vectors failures (include and update cases)
681+
search.vectors/250_source_synthetic_sparse_vectors.yml:
682+
- "include synthetic vectors"
683+
- "Bulk partial update with synthetic vectors"
684+
- "Partial update with synthetic vectors"
685+
686+
rank_vectors/rank_vectors_synthetic_vectors.yml:
687+
- "include synthetic vectors"
688+
- "Bulk partial update with synthetic vectors"
689+
- "Partial update with synthetic vectors"
665690
`

0 commit comments

Comments
 (0)