Skip to content

Commit 89ab274

Browse files
committed
FIx.
1 parent e282e82 commit 89ab274

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/main.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ jobs:
1717

1818
run-tests:
1919

20-
name: Run tests for ${{ matrix.os }} on ${{ matrix.python-version }}
20+
name: Run tests for ${{ matrix.os }} on ${{ matrix.environment }}
2121
runs-on: ${{ matrix.os }}
2222

2323
strategy:
@@ -28,8 +28,8 @@ jobs:
2828

2929
steps:
3030
- uses: actions/checkout@v4
31-
- uses: julia-actions/setup-julia@v2
32-
if: matrix.os == 'macos-latest' || matrix.os == 'windows-latest'
31+
- if: matrix.os == 'macos-latest' || matrix.os == 'windows-latest'
32+
uses: julia-actions/setup-julia@v2
3333
- uses: prefix-dev/[email protected]
3434
with:
3535
pixi-version: v0.20.1
@@ -40,7 +40,7 @@ jobs:
4040

4141
- name: Run unit tests and doctests.
4242
shell: bash -l {0}
43-
run: pixi run -e ${{ matrix.environment }} pytest -m "unit or (not integration and not end_to_end)" --cov=./ --cov-report=xml -n auto
43+
run: pixi run -e ${{ matrix.environment }} test -m "unit or (not integration and not end_to_end)" --cov-report=xml -n auto
4444

4545
- name: Upload unit test coverage reports to Codecov with GitHub Action
4646
uses: codecov/codecov-action@v4
@@ -49,7 +49,7 @@ jobs:
4949

5050
- name: Run end-to-end tests.
5151
shell: bash -l {0}
52-
run: pixi run -e ${{ matrix.environment }} pytest -m end_to_end --cov=./ --cov-report=xml -n auto
52+
run: pixi run -e ${{ matrix.environment }} test -m end_to_end --cov-report=xml -n auto
5353

5454
- name: Upload end_to_end test coverage reports to Codecov with GitHub Action
5555
uses: codecov/codecov-action@v4

0 commit comments

Comments
 (0)