This commit adds the BuildParams.testSeed to the repository base paths used in searchable snapshots QA tests. For S3 and GCS the test seed is added for coherency sake with other integration tests while it's required for Azure as Azure 3rd party tests are executed on CI simultaneously for regular and SAS token accounts. Closes #58260
This commit is contained in:
parent
dcc5a06dec
commit
4e03633a66
|
@ -63,7 +63,7 @@ integTest {
|
||||||
dependsOn repositoryPlugin.bundlePlugin
|
dependsOn repositoryPlugin.bundlePlugin
|
||||||
runner {
|
runner {
|
||||||
systemProperty 'test.azure.container', azureContainer
|
systemProperty 'test.azure.container', azureContainer
|
||||||
systemProperty 'test.azure.base_path', azureBasePath + "_searchable_snapshots_tests"
|
systemProperty 'test.azure.base_path', azureBasePath + "_searchable_snapshots_tests_" + BuildParams.testSeed
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -107,7 +107,7 @@ integTest {
|
||||||
dependsOn repositoryPlugin.bundlePlugin
|
dependsOn repositoryPlugin.bundlePlugin
|
||||||
runner {
|
runner {
|
||||||
systemProperty 'test.gcs.bucket', gcsBucket
|
systemProperty 'test.gcs.bucket', gcsBucket
|
||||||
systemProperty 'test.gcs.base_path', gcsBasePath + "_searchable_snapshots_tests"
|
systemProperty 'test.gcs.base_path', gcsBasePath + "_searchable_snapshots_tests" + BuildParams.testSeed
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -45,7 +45,7 @@ integTest {
|
||||||
dependsOn repositoryPlugin.bundlePlugin
|
dependsOn repositoryPlugin.bundlePlugin
|
||||||
runner {
|
runner {
|
||||||
systemProperty 'test.s3.bucket', s3Bucket
|
systemProperty 'test.s3.bucket', s3Bucket
|
||||||
systemProperty 'test.s3.base_path', s3BasePath ? s3BasePath + "_searchable_snapshots_tests" : 'base_path'
|
systemProperty 'test.s3.base_path', s3BasePath ? s3BasePath + "_searchable_snapshots_tests" + BuildParams.testSeed : 'base_path'
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue