You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Add load balancer task to Evergreen. This cleans up some unused variables in run-tests.sh and copies over SSL URI handling from PHPC (needed since LB appears to be the first task using SSL).
Sync all spec tests. Synced with mongodb/specifications@b508f6d
Added skips for some CSFLE and command monitoring tests, which replaces a previous manual edit to azureKMS.json.
Various test suite fixes for load balancers and/or sharded clusters.
Copy file name to clipboardExpand all lines: .evergreen/run-tests.sh
+22-10Lines changed: 22 additions & 10 deletions
Original file line number
Diff line number
Diff line change
@@ -2,18 +2,17 @@
2
2
set -o errexit # Exit the script with error if any of the commands fail
3
3
4
4
# Supported/used environment variables:
5
-
# AUTH Set to enable authentication. Defaults to "noauth"
6
-
# SSL Set to enable SSL. Defaults to "nossl"
7
-
# MONGODB_URI Set the suggested connection MONGODB_URI (including credentials and topology info)
8
-
# MARCH Machine Architecture. Defaults to lowercase uname -m
5
+
# SSL Set to "yes" to enable SSL. Defaults to "nossl"
6
+
# MONGODB_URI Set the suggested connection MONGODB_URI (including credentials and topology info)
7
+
# API_VERSION Optional API_VERSION environment variable for run-tests.php
8
+
# IS_MATRIX_TESTING Set to "true" to enable matrix testing. Defaults to empty string. If "true", DRIVER_MONGODB_VERSION and MONGODB_VERSION will also be checked.
9
+
# MOCK_SERVICE_ID Set to "1" to enable service ID mocking for load balancers. Defaults to empty string.
9
10
10
-
11
-
AUTH=${AUTH:-noauth}
12
11
SSL=${SSL:-nossl}
13
12
MONGODB_URI=${MONGODB_URI:-}
14
-
TESTS=${TESTS:-}
15
13
API_VERSION=${API_VERSION:-}
16
14
IS_MATRIX_TESTING=${IS_MATRIX_TESTING:-}
15
+
MOCK_SERVICE_ID=${MOCK_SERVICE_ID:-}
17
16
18
17
# For matrix testing, we have to determine the correct driver version
19
18
if [ "${IS_MATRIX_TESTING}"="true" ];then
@@ -44,10 +43,23 @@ if [ "${IS_MATRIX_TESTING}" = "true" ]; then
0 commit comments