File tree Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Expand file tree Collapse file tree 2 files changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -247,7 +247,7 @@ def handle_test_env() -> None:
247
247
LOGGER .info ("Using crypt_shared_dir %s" , CRYPT_SHARED_DIR )
248
248
DYLD_FALLBACK_LIBRARY_PATH = os .environ .get ("DYLD_FALLBACK_LIBRARY_PATH" , "" )
249
249
LD_LIBRARY_PATH = os .environ .get ("LD_LIBRARY_PATH" , "" )
250
- PATH = os .environ ( "PATH" )
250
+ PATH = os .environ [ "PATH" ]
251
251
write_env ("DYLD_FALLBACK_LIBRARY_PATH" , f"{ CRYPT_SHARED_DIR } :{ DYLD_FALLBACK_LIBRARY_PATH } " )
252
252
write_env ("LD_LIBRARY_PATH" , f"{ CRYPT_SHARED_DIR } :{ LD_LIBRARY_PATH } " )
253
253
write_env ("PATH" , f"{ CRYPT_SHARED_DIR } :{ PATH } " )
Original file line number Diff line number Diff line change @@ -46,6 +46,12 @@ if [ -n "${TEST_INDEX_MANAGEMENT:-}" ]; then
46
46
source $DRIVERS_TOOLS /.evergreen/atlas/secrets-export.sh
47
47
fi
48
48
49
+ # Source local secrets if applicable.
50
+ if [ -f " $ROOT_DIR /secrets-export.sh" ]; then
51
+ source " $ROOT_DIR /secrets-export.sh"
52
+ fi
53
+
54
+
49
55
. $ROOT_DIR /.evergreen/utils.sh
50
56
PYTHON=${PYTHON_BINARY:- $(find_python3)}
51
57
$PYTHON $SCRIPT_DIR /setup-tests.py
You can’t perform that action at this time.
0 commit comments