File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -18,21 +18,18 @@ defaults:
1818
1919jobs :
2020 unit-test :
21- name : " py${{ matrix.python-version }} | ${{ matrix.os }} | unit tests (${{ matrix.test-subfolder }}) "
21+ name : " py${{ matrix.python-version }} | ${{ matrix.os }} | unit tests"
2222 runs-on : ${{ matrix.os }}-latest
2323 strategy :
2424 fail-fast : false
2525 matrix :
26- os : [ubuntu] # , mac, windows] # TODO v4: Re-enable windows and mac
27- test-subfolder : ["/"]
26+ os : [macos] # , mac, windows] # TODO v4: Re-enable windows and mac
2827 python-version : ["3.12"]
2928 include :
3029 - os : ubuntu
3130 python-version : " 3.11"
32- test-subfolder : " /"
3331 - os : ubuntu
3432 python-version : " 3.12"
35- test-subfolder : " /v4"
3633 steps :
3734 - name : Checkout
3835 uses : actions/checkout@v4
4340 python-version : ${{ matrix.python-version }}
4441 - name : Unit test
4542 run : |
46- coverage run -m pytest -v -s --html=${{ matrix.os }}_${{ matrix.python-version }}_unit_test_report.html --self-contained-html tests${{ matrix.test-subfolder }}
43+ coverage run -m pytest -v -s --html=${{ matrix.os }}_${{ matrix.python-version }}_unit_test_report.html --self-contained-html tests
4744 coverage xml
4845 - name : Codecov
4946 uses : codecov/codecov-action@v5.3.1
You can’t perform that action at this time.
0 commit comments