From 0677321ff7273a0820b6f6efaf9d7cf7e566e57e Mon Sep 17 00:00:00 2001 From: Henry Schreiner Date: Tue, 12 Nov 2024 14:26:30 -0500 Subject: [PATCH] chore: fix reporting on _typing Signed-off-by: Henry Schreiner --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 7f16876e..87b89561 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -141,10 +141,10 @@ testpaths = [ "tests" ] [tool.coverage] run.branch = true -run.omit = [ "nox/_typing.py" ] run.relative_files = true run.source_pkgs = [ "nox" ] report.exclude_also = [ "def __dir__()", "if TYPE_CHECKING:", "@overload" ] +report.omit = [ "nox/_typing.py" ] [tool.mypy] files = [ "nox/**/*.py", "noxfile.py" ]