Skip to content

Commit 0cb091f

Browse files
author
Vinit Kumar
committed
fix: invalid yaml
1 parent 0d14d03 commit 0cb091f

File tree

1 file changed

+12
-12
lines changed

1 file changed

+12
-12
lines changed

.github/workflows/pythonpackage.yml

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -41,15 +41,15 @@ jobs:
4141
python -m pip install --upgrade pip
4242
pip install --upgrade -r requirements-dev.txt
4343
pip install .
44-
- name: Unit tests
45-
run: |
46-
pytest --cov --junitxml=junit.xml
47-
- name: Upload coverage to Codecov
48-
uses: codecov/codecov-action@v4
49-
with:
50-
token: ${{ secrets.CODECOV_TOKEN }}
51-
- name: Upload test results to Codecov
52-
if: ${{ !cancelled() }}
53-
uses: codecov/test-results-action@v1
54-
with:
55-
token: ${{ secrets.CODECOV_TOKEN }}
44+
- name: Test with pytest
45+
run: |
46+
pytest --cov --junitxml=junit.xml
47+
- name: Upload coverage to Codecov
48+
uses: codecov/codecov-action@v4
49+
with:
50+
token: ${{ secrets.CODECOV_TOKEN }}
51+
- name: Upload test results to Codecov
52+
if: ${{ !cancelled() }}
53+
uses: codecov/test-results-action@v1
54+
with:
55+
token: ${{ secrets.CODECOV_TOKEN }}

0 commit comments

Comments
 (0)