Skip to content

Commit

Permalink
Skip compatibility tests as warning don't exist for compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
mayya-sharipova committed Sep 23, 2024
1 parent 0cd882b commit bfe1318
Show file tree
Hide file tree
Showing 4 changed files with 14 additions and 0 deletions.
4 changes: 4 additions & 0 deletions modules/rank-eval/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -25,3 +25,7 @@ testClusters.configureEach {
// Modules who's integration is explicitly tested in integration tests
module ':modules:lang-mustache'
}

tasks.named("yamlRestCompatTestTransform").configure({ task ->
task.skipTest("rank_eval/30_failures/Response format", "warning does not exist for compatibility")
})
4 changes: 4 additions & 0 deletions modules/runtime-fields-common/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -22,3 +22,7 @@ dependencies {
api project(':libs:elasticsearch-grok')
api project(':libs:elasticsearch-dissect')
}

tasks.named("yamlRestCompatTestTransform").configure({ task ->
task.skipTest("runtime_fields/110_composite/query", "warning does not exist for compatibility")
})
2 changes: 2 additions & 0 deletions rest-api-spec/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -56,4 +56,6 @@ tasks.named("precommit").configure {

tasks.named("yamlRestCompatTestTransform").configure({ task ->
task.skipTest("tsdb/140_routing_path/multi-value routing path field", "Multi-value routing paths are allowed now. See #112645")
task.skipTest("indices.sort/10_basic/Index Sort", "warning does not exist for compatibility")
task.skipTest("search/330_fetch_fields/Test search rewrite", "warning does not exist for compatibility")
})
4 changes: 4 additions & 0 deletions x-pack/plugin/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -80,3 +80,7 @@ tasks.named("precommit").configure {
dependsOn 'enforceYamlTestConvention', 'enforceApiSpecsConvention'
}

tasks.named("yamlRestCompatTestTransform").configure({ task ->
task.skipTest("security/10_forbidden/Test bulk response with invalid credentials", "warning does not exist for compatibility")
})

0 comments on commit bfe1318

Please sign in to comment.