Skip to content

Commit e57a06c

Browse files
committed
Remove --no-build-cache flags in tests
1 parent 3f2c151 commit e57a06c

File tree

4 files changed

+6
-6
lines changed

4 files changed

+6
-6
lines changed

.evergreen/run-csfle-aws-from-environment.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,12 +22,12 @@ export AWS_ACCESS_KEY_ID=${AWS_ACCESS_KEY_ID}
2222
export AWS_SECRET_ACCESS_KEY=${AWS_SECRET_ACCESS_KEY}
2323

2424
./gradlew --stacktrace --info -Dorg.mongodb.test.uri=${MONGODB_URI} \
25-
--no-build-cache driver-sync:cleanTest driver-sync:test --tests ClientSideEncryptionAwsCredentialFromEnvironmentTest
25+
driver-sync:cleanTest driver-sync:test --tests ClientSideEncryptionAwsCredentialFromEnvironmentTest
2626
first=$?
2727
echo $first
2828

2929
./gradlew --stacktrace --info -Dorg.mongodb.test.uri=${MONGODB_URI} \
30-
--no-build-cache driver-reactive-streams:cleanTest driver-reactive-streams:test --tests ClientSideEncryptionAwsCredentialFromEnvironmentTest
30+
driver-reactive-streams:cleanTest driver-reactive-streams:test --tests ClientSideEncryptionAwsCredentialFromEnvironmentTest
3131
second=$?
3232
echo $second
3333

.evergreen/run-kms-tls-tests.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,13 +24,13 @@ export KMS_TLS_ERROR_TYPE=${KMS_TLS_ERROR_TYPE}
2424

2525
./gradlew --stacktrace --info ${GRADLE_EXTRA_VARS} -Dorg.mongodb.test.uri=${MONGODB_URI} \
2626
-Dorg.mongodb.test.kms.tls.error.type=${KMS_TLS_ERROR_TYPE} \
27-
--no-build-cache driver-sync:cleanTest driver-sync:test --tests ClientSideEncryptionKmsTlsTest
27+
driver-sync:cleanTest driver-sync:test --tests ClientSideEncryptionKmsTlsTest
2828
first=$?
2929
echo $first
3030

3131
./gradlew --stacktrace --info ${GRADLE_EXTRA_VARS} -Dorg.mongodb.test.uri=${MONGODB_URI} \
3232
-Dorg.mongodb.test.kms.tls.error.type=${KMS_TLS_ERROR_TYPE} \
33-
--no-build-cache driver-reactive-streams:cleanTest driver-reactive-streams:test --tests ClientSideEncryptionKmsTlsTest
33+
driver-reactive-streams:cleanTest driver-reactive-streams:test --tests ClientSideEncryptionKmsTlsTest
3434
second=$?
3535
echo $second
3636

.evergreen/run-mongodb-aws-test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ echo "Running tests with Java ${JAVA_VERSION}"
2828
# to run cleanTest to ensure that the test actually executes each run
2929
./gradlew -PjavaVersion="${JAVA_VERSION}" -Dorg.mongodb.test.uri="${MONGODB_URI}" \
3030
-Dorg.mongodb.test.aws.credential.provider="${AWS_CREDENTIAL_PROVIDER}" \
31-
--stacktrace --debug --info --no-build-cache driver-core:cleanTest driver-core:test --tests AwsAuthenticationSpecification
31+
--stacktrace --debug --info driver-core:cleanTest driver-core:test --tests AwsAuthenticationSpecification

.evergreen/run-mongodb-oidc-test.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,6 @@ REPLACEMENT="mongodb://$OIDC_ADMIN_USER:$OIDC_ADMIN_PWD@"
5050
ADMIN_URI=${MONGODB_URI/$TO_REPLACE/$REPLACEMENT}
5151

5252
./gradlew -Dorg.mongodb.test.uri="$ADMIN_URI" \
53-
--stacktrace --debug --info --no-build-cache driver-core:cleanTest \
53+
--stacktrace --debug --info driver-core:cleanTest \
5454
driver-sync:test --tests OidcAuthenticationProseTests --tests UnifiedAuthTest \
5555
driver-reactive-streams:test --tests OidcAuthenticationAsyncProseTests \

0 commit comments

Comments
 (0)