Skip to content

Commit

Permalink
Remove coverage call in workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
scaramallion committed Aug 11, 2024
1 parent 346f73c commit f3f8632
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/merge-pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ jobs:
env:
PYTHON_VERSION: ${{ matrix.python-version }}
run: |
pytest --cov pynetdicom --ignore=pynetdicom/apps && coverage xml
pytest --cov pynetdicom --ignore=pynetdicom/apps
- name: Send coverage results
if: success()
uses: codecov/codecov-action@v4
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/pr-pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ jobs:
env:
PYTHON_VERSION: ${{ matrix.python-version }}
run: |
pytest -x --cov pynetdicom --ignore=pynetdicom/apps && coverage xml
pytest -x --cov pynetdicom --ignore=pynetdicom/apps
- name: Send coverage results
if: ${{ success() }}
uses: codecov/codecov-action@v4
Expand Down Expand Up @@ -128,7 +128,7 @@ jobs:
env:
PYTHON_VERSION: ${{ matrix.python-version }}
run: |
pytest -x --cov pynetdicom --ignore=pynetdicom/apps && coverage xml
pytest -x --cov pynetdicom --ignore=pynetdicom/apps
- name: Send coverage results
if: ${{ success() }}
uses: codecov/codecov-action@v4

0 comments on commit f3f8632

Please sign in to comment.