Skip to content
Closed
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
15 changes: 14 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,9 @@ jobs:
tox:
name: Test on Python ${{ matrix.py }}
runs-on: ubuntu-latest
permissions:
contents: read
code-quality: write
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -44,7 +47,17 @@ jobs:
- name: Run test suite
run: tox r --skip-pkg-install
env:
PYTEST_ADDOPTS: "-vv --durations=10"
PYTEST_ADDOPTS: >-
-vv --durations=10
${{ matrix.py == '3.14' && '--cov-report=xml:coverage.xml' || '' }}

- name: Upload code coverage report
if: matrix.py == '3.14'
uses: actions/upload-code-coverage@v1
with:
file: coverage.xml
language: Python
label: code-coverage/pytest
Comment on lines +54 to +60

lint:
name: Linting Code Base
Expand Down
Loading