Skip to content

Commit d341718

Browse files
committed
clean up tasks
1 parent bd72b03 commit d341718

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

.evergreen/scripts/generate_config.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -754,7 +754,8 @@ def create_aws_tasks():
754754
"web-identity",
755755
"ecs",
756756
]
757-
for version, python in zip_cycle(get_versions_from("4.4"), CPYTHONS):
757+
for idx, version in enumerate(get_versions_from("4.4")):
758+
python = CPYTHONS[idx % len(CPYTHONS)]
758759
base_name = f"test-auth-aws-{version}"
759760
base_tags = ["auth-aws"]
760761
server_vars = dict(AUTH_AWS="1", VERSION=version)

0 commit comments

Comments
 (0)