We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ee6002f + a3616ba commit fa7bb47Copy full SHA for fa7bb47
.github/workflows/build-test-release.yml
@@ -22,7 +22,6 @@ on:
22
default: false
23
required: true
24
25
-
26
concurrency:
27
group: ${{ github.workflow }}-${{ github.ref }}-main
28
cancel-in-progress: true
pyproject.toml
@@ -76,12 +76,9 @@ version = { file = "PYPI_VERSION" }
76
testpaths = ["tests/unit"]
77
addopts = [
78
"--cov=power_grid_model",
79
- "--cov-report",
80
- "term",
81
82
- "html:python_cov_html",
83
84
- "xml:python_coverage.xml",
+ "--cov-report=term",
+ "--cov-report=html:python_cov_html",
+ "--cov-report=xml:python_coverage.xml",
85
"--cov-fail-under=95",
86
]
87
xfail_strict = true
0 commit comments