Move coverage.py’s configuration into pyproject.toml

This commit is contained in:
Gergely Polonkai 2022-05-04 06:37:57 +02:00
parent 39772f1983
commit 8ab8bfba83
No known key found for this signature in database
GPG Key ID: 2D2885533B869ED4
2 changed files with 8 additions and 7 deletions

View File

@ -1,7 +0,0 @@
[run]
branch = True
[report]
fail_under = 100
show_missing = true
skip_covered = true

View File

@ -27,6 +27,14 @@ markers = [
"id_name: the name to use in the identity" "id_name: the name to use in the identity"
] ]
[tool.coverage.run]
branch = true
[tool.coverage.report]
fail_under = 100
show_missing = true
skip_covered = true
[build-system] [build-system]
requires = ["poetry-core>=1.0.0"] requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api" build-backend = "poetry.core.masonry.api"