Skip to content

Commit bc9c3f0

Browse files
committed
Ignore test seed in third party test system property inputs (#52849)
1 parent 814c275 commit bc9c3f0

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

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

+1-1
Original file line numberDiff line numberDiff line change
@@ -103,7 +103,7 @@ task thirdPartyTest(type: Test) {
103103
include '**/GoogleCloudStorageThirdPartyTests.class'
104104
systemProperty 'tests.security.manager', false
105105
systemProperty 'test.google.bucket', gcsBucket
106-
systemProperty 'test.google.base', gcsBasePath + "_third_party_tests_" + BuildParams.testSeed
106+
nonInputProperties.systemProperty 'test.google.base', gcsBasePath + "_third_party_tests_" + BuildParams.testSeed
107107
nonInputProperties.systemProperty 'test.google.account', "${-> encodedCredentials.call()}"
108108
}
109109

plugins/repository-s3/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ task thirdPartyTest(type: Test) {
144144
systemProperty 'test.s3.account', s3PermanentAccessKey
145145
systemProperty 'test.s3.key', s3PermanentSecretKey
146146
systemProperty 'test.s3.bucket', s3PermanentBucket
147-
systemProperty 'test.s3.base', s3PermanentBasePath + "_third_party_tests_" + BuildParams.testSeed
147+
nonInputProperties.systemProperty 'test.s3.base', s3PermanentBasePath + "_third_party_tests_" + BuildParams.testSeed
148148
}
149149

150150
if (useFixture) {

0 commit comments

Comments
 (0)