Rewrite bin scripts to python in scripts/ dir

This commit is contained in:
Marc Di Luzio 2024-08-13 18:12:30 +01:00
parent 12727c4d1c
commit 0beb2128bd
9 changed files with 53 additions and 32 deletions

9
scripts/test-cov.py Executable file
View 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)