File tree 1 file changed +5
-5
lines changed
1 file changed +5
-5
lines changed Original file line number Diff line number Diff line change 17
17
18
18
run-tests :
19
19
20
- name : Run tests for ${{ matrix.os }} on ${{ matrix.python-version }}
20
+ name : Run tests for ${{ matrix.os }} on ${{ matrix.environment }}
21
21
runs-on : ${{ matrix.os }}
22
22
23
23
strategy :
28
28
29
29
steps :
30
30
- 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
33
33
-
uses :
prefix-dev/[email protected]
34
34
with :
35
35
pixi-version : v0.20.1
40
40
41
41
- name : Run unit tests and doctests.
42
42
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
44
44
45
45
- name : Upload unit test coverage reports to Codecov with GitHub Action
46
46
uses : codecov/codecov-action@v4
49
49
50
50
- name : Run end-to-end tests.
51
51
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
53
53
54
54
- name : Upload end_to_end test coverage reports to Codecov with GitHub Action
55
55
uses : codecov/codecov-action@v4
You can’t perform that action at this time.
0 commit comments