File tree Expand file tree Collapse file tree 1 file changed +16
-2
lines changed
Expand file tree Collapse file tree 1 file changed +16
-2
lines changed Original file line number Diff line number Diff line change 2727 matrix :
2828 session : ["tests", "doctests-docs", "doctests-api"]
2929 python-version : ["3.10", "3.11", "3.12", "3.13"]
30+ exclude :
31+ - session : " doctests-docs"
32+ python-version : " 3.10"
33+ - session : " doctests-docs"
34+ python-version : " 3.11"
35+ - session : " doctests-docs"
36+ python-version : " 3.12"
37+ - session : " doctests-api"
38+ python-version : " 3.10"
39+ - session : " doctests-api"
40+ python-version : " 3.11"
41+ - session : " doctests-api"
42+ python-version : " 3.12"
43+
3044 defaults :
3145 run :
3246 shell : bash -l {0}
@@ -74,13 +88,13 @@ jobs:
7488 OVERRIDE_TEST_DATA_REPOSITORY=${GITHUB_WORKSPACE}/iris_test_data_download/test_data PYTHONPATH=./tests:$PYTHONPATH pytest -v ./tests
7589
7690 - name : " Run doctests: Docs"
77- if : matrix.session == 'doctests-docs'
91+ if : ( matrix.session == 'doctests-docs') && (matrix.python_version == "3.13")
7892 run : |
7993 cd docs
8094 pytest --doctest-glob="*.rst" --doctest-continue-on-failure
8195
8296 - name : " Run doctests: API"
83- if : matrix.session == 'doctests-api'
97+ if : ( matrix.session == 'doctests-api') && (matrix.python_version == "3.13")
8498 run : |
8599 cd lib
86100 pytest --doctest-modules --doctest-continue-on-failure
You can’t perform that action at this time.
0 commit comments