Rewrite bin scripts to python in scripts/ dir
This commit is contained in:
parent
12727c4d1c
commit
0beb2128bd
9 changed files with 53 additions and 32 deletions
9
scripts/test-cov.py
Executable file
9
scripts/test-cov.py
Executable 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