Skip to content

Commit

Permalink
Skipping pypy for code coverage
Browse files Browse the repository at this point in the history
  • Loading branch information
Nusnus committed Aug 22, 2024
1 parent 1ff4024 commit 80ecdea
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,12 @@ jobs:
python -m pip install --upgrade pip
python -m pip install tox tox-gh-actions
- name: Test with tox
run: tox
run: |
if [ "${{ matrix.python-version }}" != "pypy-3.10" ]; then
tox -- pytest -xv --cov=django_celery_beat --cov-report=xml --no-cov-on-fail --cov-report term
else
tox -- pytest -xv
fi
env:
DJANGO: ${{ matrix.django-version }}
- name: Upload coverage reports to Codecov
Expand Down

0 comments on commit 80ecdea

Please sign in to comment.