Skip to content

Commit 269c6f3

Browse files
committed
add files
1 parent d72dd3e commit 269c6f3

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.evergreen/scripts/run_tests.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -113,7 +113,12 @@ def run() -> None:
113113
return
114114

115115
# Run remote oidc tests.
116-
if TEST_NAME == "auth_oidc" and SUB_TEST_NAME not in ["test", "test-remote"]:
116+
print("HI HI", SUB_TEST_NAME) # noqa: T201
117+
if (
118+
TEST_NAME == "auth_oidc"
119+
and SUB_TEST_NAME != "test"
120+
and not SUB_TEST_NAME.endswith("-remote")
121+
):
117122
from oidc_tester import test_oidc_remote
118123

119124
test_oidc_remote(SUB_TEST_NAME)

0 commit comments

Comments
 (0)