Skip to content

Commit

Permalink
fix: test
Browse files Browse the repository at this point in the history
  • Loading branch information
agusmakmun committed Apr 4, 2024
1 parent 1910cd5 commit 62aae7a
Showing 1 changed file with 5 additions and 10 deletions.
15 changes: 5 additions & 10 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,10 @@ jobs:
strategy:
matrix:
os: [ macos-latest, ubuntu-latest ]
python-version: [ "3.8", "3.9", "3.10", "3.11", "3.12" ]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "pypy-3.9-v7.x"]
include:
- python-version: pypy-3.9-v7.x
py: pypy3

steps:
- uses: actions/checkout@v4
Expand All @@ -28,13 +31,5 @@ jobs:
python -m pip install --upgrade hatch
- name: Run tests
run: |
hatch run +py=${{ matrix.py || matrix.python-version }} test:with-coverage
hatch run +py=${{ matrix.py || matrix.python-version }} cov
shell: bash
- name: Upload Codecov Results
if: success()
uses: codecov/codecov-action@v3
with:
file: ./coverage.xml
flags: unittests
name: ${{ matrix.os }}/${{ matrix.python-version }}
fail_ci_if_error: false

0 comments on commit 62aae7a

Please sign in to comment.