File tree Expand file tree Collapse file tree 1 file changed +6
-3
lines changed
Expand file tree Collapse file tree 1 file changed +6
-3
lines changed Original file line number Diff line number Diff line change 6363 matrix :
6464 os : [macos, ubuntu, windows]
6565 python-version : ["3.12"]
66+ include :
67+ - os : ubuntu
68+ python-version : " 3.10"
6669 steps :
6770 - name : Checkout
6871 uses : actions/checkout@v4
7275 environment-file : environment.yml
7376 - name : Integration test
7477 run : |
75- coverage run -m pytest -v -s --nbval-lax -k "not documentation" --html="${{ matrix.os }}_integration_test_report.html" --self-contained-html docs/examples
78+ coverage run -m pytest -v -s --nbval-lax -k "not documentation" --html="${{ matrix.os }}_${{ matrix.python-version }} _integration_test_report.html" --self-contained-html docs/examples
7679 coverage xml
7780 - name : Codecov
78818487 if : ${{ always() }} # Always run this step, even if tests fail
8588 uses : actions/upload-artifact@v4
8689 with :
87- name : Integration test report ${{ matrix.os }}
88- path : ${{ matrix.os }}_integration_test_report.html
90+ name : Integration test report ${{ matrix.os }}-${{ matrix.python-version }}
91+ path : ${{ matrix.os }}_${{ matrix.python-version }} _integration_test_report.html
8992 merge-test-artifacts :
9093 runs-on : ubuntu-latest
9194 needs :
You can’t perform that action at this time.
0 commit comments