Skip to content

Commit c530109

Browse files
authored
Avoid running tests on macos-13 runner (#20155)
1 parent 7213139 commit c530109

File tree

1 file changed

+10
-4
lines changed

1 file changed

+10
-4
lines changed

.github/workflows/test.yml

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -79,12 +79,18 @@ jobs:
7979
# # allow_failure: true
8080
# test_mypyc: true
8181

82-
- name: mypyc runtime tests with py39-macos
83-
python: '3.9.21'
84-
# TODO: macos-13 is the last one to support Python 3.9, change it to macos-latest when updating the Python version
85-
os: macos-13
82+
- name: mypyc runtime tests with py313-macos
83+
python: '3.13'
84+
os: macos-latest
8685
toxenv: py
8786
tox_extra_args: "-n 3 mypyc/test/test_run.py mypyc/test/test_external.py"
87+
88+
- name: mypyc runtime tests with py313-ubuntu
89+
python: '3.13'
90+
os: ubuntu-latest
91+
toxenv: py
92+
tox_extra_args: "-n 3 mypyc/test/test_run.py mypyc/test/test_external.py"
93+
8894
# This is broken. See
8995
# - https://github.com/python/mypy/issues/17819
9096
# - https://github.com/python/mypy/pull/17822

0 commit comments

Comments
 (0)