We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f0bd850 commit bf21802Copy full SHA for bf21802
.evergreen/scripts/run_tests.py
@@ -163,6 +163,8 @@ def run() -> None:
163
if TEST_NAME == "auth_aws" and SUB_TEST_NAME in ["ecs", "eks"]:
164
target = f"run-mongodb-aws-{SUB_TEST_NAME}-test.sh"
165
text = (HERE / "run-aws-container-test.sh").read_text()
166
+ if SUB_TEST_NAME == "eks":
167
+ text = text.replace("python3.9", "python3.10")
168
(HERE.parent / target).write_text(text)
169
run_command(f"{DRIVERS_TOOLS}/.evergreen/auth_aws/aws_setup.sh {SUB_TEST_NAME}")
170
return
0 commit comments