fix(coverage): simplify coverage paths configuration
Removes redundant paths for markitdown and tests in the coverage configuration. This change streamlines the coverage report by focusing on the primary source and test directories, improving clarity and maintainability.
This commit is contained in:
parent
6da4b08f8c
commit
75c33b6713
1 changed files with 2 additions and 2 deletions
|
|
@ -69,8 +69,8 @@ omit = [
|
||||||
]
|
]
|
||||||
|
|
||||||
[tool.coverage.paths]
|
[tool.coverage.paths]
|
||||||
markitdown = ["src/markitdown", "*/markitdown/src/markitdown"]
|
markitdown = ["src/markitdown"]
|
||||||
tests = ["tests", "*/markitdown/tests"]
|
tests = ["tests"]
|
||||||
|
|
||||||
[tool.coverage.report]
|
[tool.coverage.report]
|
||||||
exclude_lines = [
|
exclude_lines = [
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue