File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed
Expand file tree Collapse file tree 1 file changed +3
-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+
3031 defaults :
3132 run :
3233 shell : bash -l {0}
@@ -74,13 +75,13 @@ jobs:
7475 OVERRIDE_TEST_DATA_REPOSITORY=${GITHUB_WORKSPACE}/iris_test_data_download/test_data PYTHONPATH=./tests:$PYTHONPATH pytest -v ./tests
7576
7677 - name : " Run doctests: Docs"
77- if : matrix.session == 'doctests-docs'
78+ if : ( matrix.session == 'doctests-docs') && (matrix.python_version == "3.13")
7879 run : |
7980 cd docs
8081 pytest --doctest-glob="*.rst" --doctest-continue-on-failure
8182
8283 - name : " Run doctests: API"
83- if : matrix.session == 'doctests-api'
84+ if : ( matrix.session == 'doctests-api') && (matrix.python_version == "3.13")
8485 run : |
8586 cd lib
8687 pytest --doctest-modules --doctest-continue-on-failure
You can’t perform that action at this time.
0 commit comments