From 3f89161a91757fadf33f432c56fcc488d6f1b289 Mon Sep 17 00:00:00 2001 From: Lie Ryan Date: Thu, 4 Apr 2024 23:56:43 +1100 Subject: [PATCH] Add "raise NotImplementedError()" to coverage exclusion --- pyproject.toml | 1 + 1 file changed, 1 insertion(+) diff --git a/pyproject.toml b/pyproject.toml index 8c17acd2..f1006729 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -87,6 +87,7 @@ force-exclude = 'ropetest|rope/base/prefs.py' [tool.coverage.report] exclude_also = [ "if TYPE_CHECKING:", + "raise NotImplementedError()", ] [tool.isort]