Skip to content

Commit 29c482f

Browse files
committed
add win-11-arm
1 parent 3201630 commit 29c482f

2 files changed

Lines changed: 10 additions & 7 deletions

File tree

.github/workflows/ci.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,7 @@ jobs:
2424
macos-15,
2525
macos-15-intel,
2626
windows-2025,
27+
windows-11-arm,
2728
]
2829
python-version: ["3.12"]
2930

@@ -70,6 +71,7 @@ jobs:
7071
macos-15,
7172
macos-15-intel,
7273
windows-2025,
74+
windows-11-arm,
7375
]
7476
python-version: ["3.12"]
7577

@@ -100,7 +102,7 @@ jobs:
100102

101103
- name: Run tests
102104
run: |
103-
pytest -m "not repro and (not litert and not gpu)" -n auto
105+
pytest -m "not load_model and not repro and (not litert and not gpu)" -n auto
104106
105107
- name: Test build
106108
run: |
@@ -118,6 +120,7 @@ jobs:
118120
ubuntu-24.04,
119121
ubuntu-24.04-arm,
120122
macos-15,
123+
windows-11-arm,
121124
# intel mac and windows not supported for litert
122125
]
123126
python-version: ["3.12"]
@@ -148,4 +151,4 @@ jobs:
148151

149152
- name: Run tests
150153
run: |
151-
pytest -m "not repro and litert" -n auto
154+
pytest -m "not load_model and not repro and litert" -n auto

pyproject.toml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -170,17 +170,17 @@ deps =
170170
.[tests,repro]
171171
commands =
172172
pytest -m "load_model" -n auto
173-
pytest -m "not load_model repro and (not litert and not gpu)" -n auto
174-
pytest -m "not load_model repro and litert" -n auto
175-
pytest -m "not load_model repro and gpu" -n 1
173+
pytest -m "not load_model and repro and (not litert and not gpu)" -n auto
174+
pytest -m "not load_model and repro and litert" -n auto
175+
pytest -m "not load_model and repro and gpu" -n 1
176176
177177
[testenv:py313]
178178
deps =
179179
.[tests,and-cuda]
180180
commands =
181181
pytest -m "load_model" -n auto
182-
pytest -m "not load_model not repro and (not litert and not gpu)" -n auto
183-
pytest -m "not load_model not repro and gpu" -n 1
182+
pytest -m "not load_model and not repro and (not litert and not gpu)" -n auto
183+
pytest -m "not load_model and not repro and gpu" -n 1
184184
"""
185185

186186
[build-system]

0 commit comments

Comments
 (0)