Skip to content

Commit a7b9d65

Browse files
committed
Make sure coverage errors with PyPy are ignored
1 parent ab84108 commit a7b9d65

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

tox.ini

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,9 @@ passenv=
1010
commands =
1111
# Create HTML coverage report for humans and xml coverage report for external services.
1212
coverage run --source=isal -m py.test tests
13-
coverage html
14-
coverage xml
13+
# Ignore errors during report generation. Pypy does not generate proper coverage reports.
14+
coverage html -i
15+
coverage xml -i
1516

1617
[testenv:coverage]
1718
# Separate test environment for cython coverage.

0 commit comments

Comments
 (0)