File tree Expand file tree Collapse file tree 4 files changed +10
-3
lines changed
qa/multi-project/core-rest-tests-with-multiple-projects Expand file tree Collapse file tree 4 files changed +10
-3
lines changed Original file line number Diff line number Diff line change @@ -87,13 +87,13 @@ tasks.named("yamlRestCompatTestTransform").configure({ task ->
8787})
8888
8989configurations {
90- basicRestSpecs {
90+ restTests {
9191 attributes {
9292 attribute(ArtifactTypeDefinition . ARTIFACT_TYPE_ATTRIBUTE , ArtifactTypeDefinition . DIRECTORY_TYPE )
9393 }
9494 }
9595}
9696
9797artifacts {
98- basicRestSpecs (new File (projectDir, " src/yamlRestTest/resources/rest-api-spec/test" ))
98+ restTests (new File (projectDir, " src/yamlRestTest/resources/rest-api-spec/test" ))
9999}
Original file line number Diff line number Diff line change @@ -602,6 +602,12 @@ tests:
602602- class : org.elasticsearch.xpack.logsdb.LogsdbTestSuiteIT
603603 method : test {yaml=/52_esql_insist_operator_synthetic_source/FROM with INSIST_🐔}
604604 issue : https://github.com/elastic/elasticsearch/issues/130507
605+ - class : org.elasticsearch.common.ssl.DefaultJdkTrustConfigTests
606+ method : testGetSystemTrustStoreWithNoSystemProperties
607+ issue : https://github.com/elastic/elasticsearch/issues/130517
608+ - class : org.elasticsearch.common.ssl.DefaultJdkTrustConfigTests
609+ method : testGetNonPKCS11TrustStoreWithPasswordSet
610+ issue : https://github.com/elastic/elasticsearch/issues/130519
605611
606612# Examples:
607613#
Original file line number Diff line number Diff line change @@ -28,7 +28,7 @@ dependencies {
2828 clusterModules project(xpackModule(' mapper-constant-keyword' ))
2929 clusterModules project(xpackModule(' wildcard' ))
3030 clusterModules project(' :test:external-modules:test-multi-project' )
31- restTestConfig project(path : ' :modules:data-streams' , configuration : " basicRestSpecs " )
31+ restTestConfig project(path : ' :modules:data-streams' , configuration : " restTests " )
3232 restTestConfig project(path : ' :modules:ingest-common' , configuration : " basicRestSpecs" )
3333 restTestConfig project(path : ' :modules:reindex' , configuration : " basicRestSpecs" )
3434 restTestConfig project(path : ' :modules:streams' , configuration : " basicRestSpecs" )
Original file line number Diff line number Diff line change @@ -20,6 +20,7 @@ dependencies {
2020 freeTests project(path : ' :rest-api-spec' , configuration : ' restTests' )
2121 freeTests project(path : ' :modules:aggregations' , configuration : ' restTests' )
2222 freeTests project(path : ' :modules:analysis-common' , configuration : ' restTests' )
23+ freeTests project(path : ' :modules:data-streams' , configuration : ' restTests' )
2324 freeTests project(path : ' :modules:ingest-geoip' , configuration : ' restTests' )
2425 compatApis project(path : ' :rest-api-spec' , configuration : ' restCompatSpecs' )
2526 compatApis project(path : ' :x-pack:plugin' , configuration : ' restCompatSpecs' )
You can’t perform that action at this time.
0 commit comments