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 bd72b03 commit d341718Copy full SHA for d341718
.evergreen/scripts/generate_config.py
@@ -754,7 +754,8 @@ def create_aws_tasks():
754
"web-identity",
755
"ecs",
756
]
757
- for version, python in zip_cycle(get_versions_from("4.4"), CPYTHONS):
+ for idx, version in enumerate(get_versions_from("4.4")):
758
+ python = CPYTHONS[idx % len(CPYTHONS)]
759
base_name = f"test-auth-aws-{version}"
760
base_tags = ["auth-aws"]
761
server_vars = dict(AUTH_AWS="1", VERSION=version)
0 commit comments