Huge re-org to match normal python project structure
This commit is contained in:
parent
b263e20ca2
commit
92bc50396b
22 changed files with 35 additions and 47 deletions
9
tests/test-cov.py
Normal file
9
tests/test-cov.py
Normal file
|
@ -0,0 +1,9 @@
|
|||
import pytest
|
||||
import sys
|
||||
|
||||
# Run pytest with a coverage report
|
||||
exitcode = pytest.main([
|
||||
"--cov", ".",
|
||||
"--cov-report", "html"
|
||||
])
|
||||
sys.exit(exitcode)
|
Loading…
Add table
Add a link
Reference in a new issue