Skip to content

Commit e6b88b8

Browse files
committed
run pytest only on ubuntu
1 parent 66a3e7e commit e6b88b8

File tree

1 file changed

+6
-4
lines changed

1 file changed

+6
-4
lines changed

.github/workflows/test.yml

+6-4
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,13 @@ jobs:
4444
which sincei
4545
sincei --help
4646
- name: Generate coverage report
47-
run: |
48-
pip install pytest
49-
pip install pytest-cov
50-
pytest --cov=./
47+
if: matrix.os == 'ubuntu-latest'
48+
run: |
49+
pip install pytest
50+
pip install pytest-cov
51+
pytest --cov=./
5152
- name: Upload coverage to Codecov
53+
if: matrix.os == 'ubuntu-latest'
5254
uses: codecov/codecov-action@v3
5355
with:
5456
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)