Skip to content

Commit

Permalink
fix(coverage): simplify coverage paths configuration
Browse files Browse the repository at this point in the history
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.
  • Loading branch information
l-lumin authored and gitbutler-client committed Dec 26, 2024
1 parent 6da4b08 commit 75c33b6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -69,8 +69,8 @@ omit = [
]

[tool.coverage.paths]
markitdown = ["src/markitdown", "*/markitdown/src/markitdown"]
tests = ["tests", "*/markitdown/tests"]
markitdown = ["src/markitdown"]
tests = ["tests"]

[tool.coverage.report]
exclude_lines = [
Expand Down

0 comments on commit 75c33b6

Please sign in to comment.