matchy/tests/test-cov.py

10 lines
154 B
Python
Raw Permalink Normal View History

import pytest
import sys
# Run pytest with a coverage report
exitcode = pytest.main([
"--cov", ".",
"--cov-report", "html"
])
sys.exit(exitcode)