Skip to content

Commit ed0f4af

Browse files
committed
add files
1 parent ac4adb8 commit ed0f4af

File tree

3 files changed

+9
-9
lines changed

3 files changed

+9
-9
lines changed

.evergreen/scripts/kms_tester.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -109,7 +109,7 @@ def setup_kms(sub_test_name: str) -> None:
109109
write_env("KEY_VAULT_ENDPOINT", config["AZUREKMS_KEYVAULTENDPOINT"])
110110

111111

112-
def test_kms_remote(sub_test_name: str) -> None:
112+
def test_kms_send_to_remote(sub_test_name: str) -> None:
113113
env = _load_kms_config(sub_test_name)
114114
if sub_test_name == "azure":
115115
key_name = os.environ["KEY_NAME"]

.evergreen/scripts/oidc_tester.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ def setup_oidc(sub_test_name: str) -> dict[str, str] | None:
5757
return config
5858

5959

60-
def test_oidc_remote(sub_test_name: str) -> None:
60+
def test_oidc_send_to_remote(sub_test_name: str) -> None:
6161
env = os.environ.copy()
6262
target_dir = _get_target_dir(sub_test_name)
6363
create_archive()

.evergreen/scripts/run_tests.py

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -100,27 +100,27 @@ def run() -> None:
100100
if TEST_PERF:
101101
start_time = datetime.now()
102102

103-
# Run remote kms tests.
103+
# Send kms tests to run remotely.
104104
if TEST_NAME == "kms" and SUB_TEST_NAME in ["azure", "gcp"]:
105-
from kms_tester import test_kms_remote
105+
from kms_tester import test_kms_send_to_remote
106106

107-
test_kms_remote(SUB_TEST_NAME)
107+
test_kms_send_to_remote(SUB_TEST_NAME)
108108
return
109109

110-
# Run remote ecs tests.
110+
# Senc ecs tests to run remotely.
111111
if TEST_NAME == "auth_aws" and SUB_TEST_NAME == "ecs":
112112
run_command(f"{DRIVERS_TOOLS}/.evergreen/auth_aws/aws_setup.sh ecs")
113113
return
114114

115-
# Run remote oidc tests.
115+
# Send OIDC tests to run remotely.
116116
if (
117117
TEST_NAME == "auth_oidc"
118118
and SUB_TEST_NAME != "test"
119119
and not SUB_TEST_NAME.endswith("-remote")
120120
):
121-
from oidc_tester import test_oidc_remote
121+
from oidc_tester import test_oidc_send_to_remote
122122

123-
test_oidc_remote(SUB_TEST_NAME)
123+
test_oidc_send_to_remote(SUB_TEST_NAME)
124124
return
125125

126126
if os.environ.get("DEBUG_LOG"):

0 commit comments

Comments
 (0)