Skip to content

Commit 03b1da6

Browse files
committed
add skips on macos
1 parent 58efc8e commit 03b1da6

File tree

2 files changed

+5
-0
lines changed

2 files changed

+5
-0
lines changed

.evergreen/config.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3564,6 +3564,7 @@ buildvariants:
35643564
- macos-14
35653565
expansions:
35663566
skip_ECS_auth_test: "true"
3567+
skip_web_identity_auth_test: "true"
35673568
PYTHON_BINARY: /Library/Frameworks/Python.Framework/Versions/3.9/bin/python3
35683569
- name: aws-auth-macos-py3.13
35693570
tasks:
@@ -3579,6 +3580,7 @@ buildvariants:
35793580
- macos-14
35803581
expansions:
35813582
skip_ECS_auth_test: "true"
3583+
skip_web_identity_auth_test: "true"
35823584
PYTHON_BINARY: /Library/Frameworks/Python.Framework/Versions/3.13/bin/python3
35833585

35843586
- matrix_name: "tests-fips"

.evergreen/scripts/generate_config.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -623,6 +623,9 @@ def generate_aws_auth_variants():
623623
expansions = dict()
624624
if host != "ubuntu20":
625625
expansions["skip_ECS_auth_test"] = "true"
626+
if host == "macos":
627+
expansions["skip_ECS_auth_test"] = "true"
628+
expansions["skip_web_identity_auth_test"] = "true"
626629
variant = create_variant(
627630
tasks,
628631
get_display_name("AWS Auth", host, python=python),

0 commit comments

Comments
 (0)