From db526f7d36d0db6c80780ec71c81ec1ef839c5e7 Mon Sep 17 00:00:00 2001 From: Steven Silvester Date: Fri, 15 Sep 2023 22:00:44 -0500 Subject: [PATCH] PYTHON-3716 Move OIDC test file (#1378) --- .evergreen/run-tests.sh | 2 +- test/{auth_aws => auth_oidc}/test_auth_oidc.py | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename test/{auth_aws => auth_oidc}/test_auth_oidc.py (100%) diff --git a/.evergreen/run-tests.sh b/.evergreen/run-tests.sh index 7b7815764..02bd86eaa 100755 --- a/.evergreen/run-tests.sh +++ b/.evergreen/run-tests.sh @@ -224,7 +224,7 @@ fi if [ -n "$TEST_AUTH_OIDC" ]; then python -m pip install ".[aws]" - TEST_ARGS="test/auth_aws/test_auth_oidc.py" + TEST_ARGS="test/auth_oidc/test_auth_oidc.py" fi if [ -n "$PERF_TEST" ]; then diff --git a/test/auth_aws/test_auth_oidc.py b/test/auth_oidc/test_auth_oidc.py similarity index 100% rename from test/auth_aws/test_auth_oidc.py rename to test/auth_oidc/test_auth_oidc.py