Skip to content

Commit 58efc8e

Browse files
committed
add skip ecs
1 parent cb39c06 commit 58efc8e

File tree

2 files changed

+12
-1
lines changed

2 files changed

+12
-1
lines changed

.evergreen/config.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3533,6 +3533,7 @@ buildvariants:
35333533
run_on:
35343534
- windows-64-vsMulti-small
35353535
expansions:
3536+
skip_ECS_auth_test: "true"
35363537
PYTHON_BINARY: C:/python/Python39/python.exe
35373538
- name: aws-auth-win64-py3.13
35383539
tasks:
@@ -3547,6 +3548,7 @@ buildvariants:
35473548
run_on:
35483549
- windows-64-vsMulti-small
35493550
expansions:
3551+
skip_ECS_auth_test: "true"
35503552
PYTHON_BINARY: C:/python/Python313/python.exe
35513553
- name: aws-auth-macos-py3.9
35523554
tasks:
@@ -3561,6 +3563,7 @@ buildvariants:
35613563
run_on:
35623564
- macos-14
35633565
expansions:
3566+
skip_ECS_auth_test: "true"
35643567
PYTHON_BINARY: /Library/Frameworks/Python.Framework/Versions/3.9/bin/python3
35653568
- name: aws-auth-macos-py3.13
35663569
tasks:
@@ -3575,6 +3578,7 @@ buildvariants:
35753578
run_on:
35763579
- macos-14
35773580
expansions:
3581+
skip_ECS_auth_test: "true"
35783582
PYTHON_BINARY: /Library/Frameworks/Python.Framework/Versions/3.13/bin/python3
35793583

35803584
- matrix_name: "tests-fips"

.evergreen/scripts/generate_config.py

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -620,8 +620,15 @@ def generate_aws_auth_variants():
620620
]
621621

622622
for host, python in product(["ubuntu20", "win64", "macos"], MIN_MAX_PYTHON):
623+
expansions = dict()
624+
if host != "ubuntu20":
625+
expansions["skip_ECS_auth_test"] = "true"
623626
variant = create_variant(
624-
tasks, get_display_name("AWS Auth", host, python=python), host=host, python=python
627+
tasks,
628+
get_display_name("AWS Auth", host, python=python),
629+
host=host,
630+
python=python,
631+
expansions=expansions,
625632
)
626633
variants.append(variant)
627634
return variants

0 commit comments

Comments
 (0)