Skip to content

Commit a0b5dbc

Browse files
committed
Remove --no-build-cache flags in tests
1 parent 72bec12 commit a0b5dbc

File tree

4 files changed

+5
-6
lines changed

4 files changed

+5
-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: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,4 +68,3 @@ echo "Running OIDC authentication tests against driver-sync"
6868
echo "Running OIDC authentication tests against driver-reactive-streams"
6969
./gradlew -Dorg.mongodb.test.uri="$ADMIN_URI" \
7070
--stacktrace --debug --info driver-reactive-streams:test --tests OidcAuthenticationAsyncProseTests
71-

0 commit comments

Comments
 (0)