From 75c33b6713c5f6234280e318ff3315f48507e9f5 Mon Sep 17 00:00:00 2001 From: lumin Date: Thu, 26 Dec 2024 23:09:55 +0900 Subject: [PATCH] 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. --- pyproject.toml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 3e14cec..56a24b8 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -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 = [