More accurately report coverage

This commit is contained in:
Avram Lubkin 2023-02-01 17:22:18 -05:00 коммит произвёл Chi Song
Родитель cbce155454
Коммит 3c5cd9c9e0
1 изменённых файлов: 11 добавлений и 9 удалений

Просмотреть файл

@ -126,19 +126,21 @@ documentation = "https://mslisa.readthedocs.io"
line-length = 88
target-version = ['py38']
[tool.coverage.report]
skip_empty = true
include = [
"lisa/*",
"examples/*",
"microsoft/testsuites/*",
[tool.coverage.run]
branch = true
source = [
"lisa",
"examples",
"microsoft/testsuites",
]
omit = [
"lisa/tests/*",
"lisa/tests",
]
precision = 2
[tool.coverage.report]
include_namespace_packages = true
precision = 2
skip_empty = true
[tool.flake8]
max-line-length = 88