Skip to content

Fix coverage issues #72

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 6, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
46 changes: 23 additions & 23 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true
fail_ci_if_error: true

setup-python:
name: ${{ matrix.os }}-setup-python
Expand All @@ -60,7 +60,7 @@ jobs:
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true
fail_ci_if_error: true

anaconda:
name: ${{ matrix.os }}-anaconda
Expand All @@ -87,7 +87,7 @@ jobs:
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true
fail_ci_if_error: true

rhel8-system-python:
name: rhel8-system-python
Expand All @@ -101,11 +101,11 @@ jobs:
run: python3 -m pip install nox
- name: Run Tests
run: python3 -m nox -e tests
- name: Upload to codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true
# - name: Upload to codecov
# uses: codecov/codecov-action@v5
# with:
# token: ${{ secrets.CODECOV_TOKEN }}
# fail_ci_if_error: true

rhel8-appstream-py38:
name: rhel8-appstream-py38
Expand All @@ -119,11 +119,11 @@ jobs:
run: python3.8 -m pip install nox
- name: Run Tests
run: python3.8 -m nox -e tests
- name: Upload to codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true
# - name: Upload to codecov
# uses: codecov/codecov-action@v5
# with:
# token: ${{ secrets.CODECOV_TOKEN }}
# fail_ci_if_error: true

rhel8-appstream-py39:
name: rhel8-appstream-py39
Expand All @@ -137,11 +137,11 @@ jobs:
run: python3.9 -m pip install nox
- name: Run Tests
run: python3.9 -m nox -e tests
- name: Upload to codecov
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true
# - name: Upload to codecov
# uses: codecov/codecov-action@v5
# with:
# token: ${{ secrets.CODECOV_TOKEN }}
# fail_ci_if_error: true

rhel9-system-python:
name: rhel9-system-python
Expand All @@ -159,7 +159,7 @@ jobs:
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true
fail_ci_if_error: true

msys:
name: ${{ matrix.msystem }}-system-python
Expand Down Expand Up @@ -196,7 +196,7 @@ jobs:
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true
fail_ci_if_error: true

alpine:
name: alpine-system-python
Expand All @@ -220,7 +220,7 @@ jobs:
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true
fail_ci_if_error: true

homebrew:
name: homebrew-system-python
Expand All @@ -246,7 +246,7 @@ jobs:
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true
fail_ci_if_error: true

archlinux:
name: archlinux-system-python
Expand Down Expand Up @@ -275,7 +275,7 @@ jobs:
uses: codecov/codecov-action@v5
with:
token: ${{ secrets.CODECOV_TOKEN }}
verbose: true
fail_ci_if_error: true

concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
Expand Down
Loading