Skip to content

Commit 02d3882

Browse files
committed
Revert "Update CI matrix to run v4 subfolder separately"
This reverts commit 36db4e9.
1 parent 79c3513 commit 02d3882

1 file changed

Lines changed: 3 additions & 6 deletions

File tree

.github/workflows/ci.yml

Lines changed: 3 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -18,21 +18,18 @@ defaults:
1818

1919
jobs:
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
@@ -43,7 +40,7 @@ jobs:
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

0 commit comments

Comments
 (0)