Skip to content

Commit 474d9b2

Browse files
authored
Differentiate repository integration tests base paths (#48286)
Abstract third party tests do not exist on 6.8 but we can still differentiate base paths in repository integration tests like we did for other branches. Relates #47284
1 parent b82b3d6 commit 474d9b2

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

plugins/repository-azure/qa/microsoft-azure-storage/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ task azureStorageFixture(type: AntFixture) {
5454

5555
Map<String, Object> expansions = [
5656
'container': azureContainer,
57-
'base_path': azureBasePath
57+
'base_path': azureBasePath + "_integration_tests"
5858
]
5959

6060
processTestResources {

plugins/repository-gcs/qa/google-cloud-storage/build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ task createServiceAccountFile() {
7979

8080
Map<String, Object> expansions = [
8181
'bucket': gcsBucket,
82-
'base_path': gcsBasePath
82+
'base_path': gcsBasePath + "_integration_tests"
8383
]
8484

8585
processTestResources {

plugins/repository-s3/build.gradle

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -244,9 +244,9 @@ task s3Fixture(type: AntFixture) {
244244

245245
Map<String, Object> expansions = [
246246
'permanent_bucket': s3PermanentBucket,
247-
'permanent_base_path': s3PermanentBasePath,
247+
'permanent_base_path': s3PermanentBasePath + "_integration_tests",
248248
'temporary_bucket': s3TemporaryBucket,
249-
'temporary_base_path': s3TemporaryBasePath,
249+
'temporary_base_path': s3TemporaryBasePath + "_integration_tests",
250250
'ec2_bucket': s3EC2Bucket,
251251
'ec2_base_path': s3EC2BasePath,
252252
'ecs_bucket': s3ECSBucket,

0 commit comments

Comments
 (0)