File tree Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Expand file tree Collapse file tree 2 files changed +9
-2
lines changed Original file line number Diff line number Diff line change 8585 # Unit tests only on Linux/Python 3.12
8686 runs-on : ' ubuntu-latest'
8787 needs : ['cache-test-data']
88+ strategy :
89+ matrix :
90+ python-version : ['3.10', '3.11', '3.12']
8891 steps :
8992 - uses : actions/checkout@v4
9093 with :
9396 - name : Set up Python ${{ matrix.python-version }}
9497 uses : actions/setup-python@v5
9598 with :
96- python-version : ' 3.12 '
99+ python-version : ${{ matrix.python-version }}
97100 - name : Install the latest version of uv
98101 uses : astral-sh/setup-uv@v5
99102 - name : Install ANTs
Original file line number Diff line number Diff line change 22requires =
33 tox>=4
44envlist =
5- py312, notebooks
5+ py3{10,11,12,13}
6+ notebooks
67skip_missing_interpreters = true
78
89# Configuration that allows us to split tests across GitHub runners effectively
910[gh-actions]
1011python =
12+ 3.10: py310
13+ 3.11: py311
1114 3.12: py312, notebooks
15+ 3.13: py313
1216
1317[testenv]
1418description = Pytest with coverage
You can’t perform that action at this time.
0 commit comments