Skip to content

Commit cffc85d

Browse files
committed
Coverage check isn't strict if in PyPy
1 parent 4e4cb05 commit cffc85d

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

.github/workflows/test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,6 +30,9 @@ jobs:
3030
coverage run -m pytest --doctest-modules toolz/
3131
pytest bench/
3232
pep8 --ignore="E731,W503,E402" --exclude=conf.py,tests,examples,bench -r --show-source .
33+
- name: Coverate
34+
if: (! contains(matrix.python-version, 'pypy'))
35+
run: |
3336
coverage report --show-missing --fail-under=100
3437
3538
finish:

0 commit comments

Comments
 (0)