Skip to content

Commit

Permalink
attempt coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
inno committed Apr 29, 2024
1 parent 3988fc8 commit cb1a319
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,9 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
python-version: ["3.9", "3.10", "3.11", "3.12"]
python-version: ["3.12"]
# XXX temporary to cut down on runs
# python-version: ["3.9", "3.10", "3.11", "3.12"]

steps:
- uses: actions/checkout@v4
Expand All @@ -22,9 +24,9 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pytest
pip install pytest pytest-cov
- name: Test with pytest
run: pytest tests --doctest-modules --junitxml=junit/test-results-${{ matrix.python-version }}.xml
run: pytest tests --cov --doctest-modules --junitxml=junit/test-results-${{ matrix.python-version }}.xml
- name: Upload pytest test results
uses: actions/upload-artifact@v4
with:
Expand Down

0 comments on commit cb1a319

Please sign in to comment.