Skip to content

Commit a49e630

Browse files
committed
Fix data lake tests
1 parent c3bcada commit a49e630

File tree

3 files changed

+4
-2
lines changed

3 files changed

+4
-2
lines changed

.evergreen/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -305,7 +305,7 @@ functions:
305305
params:
306306
working_dir: "src"
307307
binary: bash
308-
include_expansions_in_env: ["AWS_ACCESS_KEY_ID", "AWS_SECRET_ACCESS_KEY", "AWS_SESSION_TOKEN"]
308+
include_expansions_in_env: ["AWS_ACCESS_KEY_ID", "AWS_SECRET_ACCESS_KEY", "AWS_SESSION_TOKEN", "TEST_DATA_LAKE"]
309309
args:
310310
- .evergreen/scripts/run-with-env.sh
311311
- .evergreen/scripts/run-tests.sh

.evergreen/scripts/run-mod-wsgi-tests.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ export MOD_WSGI_SO=/opt/python/mod_wsgi/python_version/$PYTHON_VERSION/mod_wsgi_
2828
export PYTHONHOME=/opt/python/$PYTHON_VERSION
2929
# If MOD_WSGI_EMBEDDED is set use the default embedded mode behavior instead
3030
# of daemon mode (WSGIDaemonProcess).
31-
if [ -n "$MOD_WSGI_EMBEDDED" ]; then
31+
if [ -n "${MOD_WSGI_EMBEDDED:-}" ]; then
3232
export MOD_WSGI_CONF=mod_wsgi_test_embedded.conf
3333
else
3434
export MOD_WSGI_CONF=mod_wsgi_test.conf

.evergreen/scripts/run-tests.sh

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,6 +45,8 @@ if [ -n "${SKIP_CSOT_TESTS}" ]; then
4545
export SKIP_CSOT_TESTS=1
4646
fi
4747

48+
python -c "import os; print([(k, v[:3]) for (k, v) in os.environ.items()])"
49+
4850
GREEN_FRAMEWORK=${GREEN_FRAMEWORK} \
4951
PYTHON_BINARY=${PYTHON_BINARY} \
5052
NO_EXT=${NO_EXT} \

0 commit comments

Comments
 (0)