9 lines
154 B
Python
9 lines
154 B
Python
import pytest
|
|
import sys
|
|
|
|
# Run pytest with a coverage report
|
|
exitcode = pytest.main([
|
|
"--cov", ".",
|
|
"--cov-report", "html"
|
|
])
|
|
sys.exit(exitcode)
|