File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change 2
2
set -o errexit # Exit the script with error if any of the commands fail
3
3
HERE=$( dirname ${BASH_SOURCE:- $0 } )
4
4
. $DRIVERS_TOOLS /.evergreen/csfle/azurekms/setup-secrets.sh
5
+ export LIBMONGOCRYPT_URL=https://s3.amazonaws.com/mciuploads/libmongocrypt/debian11/master/latest/libmongocrypt.tar.gz
5
6
bash $HERE /just.sh setup-test kms azure-fail
6
7
PYTHON_BINARY=/opt/mongodbtoolchain/v4/bin/python3 \
7
8
KEY_NAME=" ${AZUREKMS_KEYNAME} " \
Original file line number Diff line number Diff line change @@ -130,9 +130,11 @@ def handle_test_env() -> None:
130
130
if test_name in SUB_TEST_REQUIRED and not sub_test_name :
131
131
raise ValueError (f"Test '{ test_name } ' requires a sub_test_name" )
132
132
AUTH = os .environ .get ("AUTH" , "noauth" )
133
+ LOGGER .info (f"HI, { AUTH = } " ) # TODO remove
133
134
if opts .auth or "auth" in test_name :
134
135
# Only 'auth_aws ecs' shouldn't have extra auth set.
135
136
if not (test_name == "auth_aws" and sub_test_name == "ecs" ):
137
+ LOGGER .info (f"Why am I setting this? '{ sub_test_name = } '" )
136
138
AUTH = "auth"
137
139
SSL = os .environ .get ("SSL" , "nossl" )
138
140
if opts .ssl :
You can’t perform that action at this time.
0 commit comments