From 1c546d252f1a95103689ca1f3b987b0085a1c0dc Mon Sep 17 00:00:00 2001 From: Vitor Hideyoshi Date: Sat, 19 Apr 2025 17:26:33 -0300 Subject: [PATCH] Omits Test Dir in Test Coverage --- pyproject.toml | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index 2b83921..0bf5bc9 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -57,6 +57,14 @@ requires = ["hatchling", "hatch-vcs"] build-backend = "hatchling.build" +# Tests +[tool.coverage.run] +omit = [ + "tests/*", +] + + + # Linters [tool.ruff.lint] extend-select = ["I"]