Skip to content

Commit 21a60ae

Browse files
authored
Python: skip macos-latest in gatekeeper (microsoft#989)
* update * tmp change to test ci * Update * Update * update * Just update the matrix
1 parent 170c2c7 commit 21a60ae

3 files changed

Lines changed: 7 additions & 3 deletions

File tree

.github/workflows/python-lab-tests.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,8 @@ jobs:
2222
fail-fast: true
2323
matrix:
2424
python-version: ["3.10", "3.11", "3.12", "3.13"]
25-
os: [ubuntu-latest, windows-latest, macos-latest]
25+
# TODO(ekzhu): re-enable macos-latest when this is fixed: https://github.com/actions/runner-images/issues/11881
26+
os: [ubuntu-latest, windows-latest]
2627
env:
2728
UV_PYTHON: ${{ matrix.python-version }}
2829
permissions:
@@ -68,4 +69,4 @@ jobs:
6869
summary: true
6970
display-options: fEX
7071
fail-on-empty: false
71-
title: Lab Test Results
72+
title: Lab Test Results

.github/workflows/python-tests.yml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,8 @@ jobs:
1717
fail-fast: true
1818
matrix:
1919
python-version: ["3.10", "3.11", "3.12", "3.13"]
20-
os: [ubuntu-latest, windows-latest, macos-latest]
20+
# TODO(ekzhu): re-enable macos-latest when this is fixed: https://github.com/actions/runner-images/issues/11881
21+
os: [ubuntu-latest, windows-latest]
2122
env:
2223
UV_PYTHON: ${{ matrix.python-version }}
2324
permissions:

python/packages/main/tests/workflow/test_edge.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@
2626
from agent_framework._workflow._edge_runner import create_edge_runner
2727
from agent_framework.observability import EdgeGroupDeliveryStatus
2828

29+
# Add for test
30+
2931

3032
@dataclass
3133
class MockMessage:

0 commit comments

Comments
 (0)