summaryrefslogtreecommitdiff
path: root/.coveragerc
diff options
context:
space:
mode:
authorDaniël van Noord <13665637+DanielNoord@users.noreply.github.com>2022-04-19 14:32:07 +0200
committerDaniël van Noord <13665637+DanielNoord@users.noreply.github.com>2022-04-19 17:30:40 +0200
commitc550cce659a4341923cf28cdb167ae89d1c85a74 (patch)
treec12cc732866f44ca2770a6453681e54ea898899a /.coveragerc
parent1664202ba5de84149d0a2eeb078b1731d1782fbb (diff)
downloadpylint-git-c550cce659a4341923cf28cdb167ae89d1c85a74.tar.gz
Add base Checker classes mirroring interfaces
Diffstat (limited to '.coveragerc')
-rw-r--r--.coveragerc3
1 files changed, 3 insertions, 0 deletions
diff --git a/.coveragerc b/.coveragerc
index 871b6077e..faa494f8e 100644
--- a/.coveragerc
+++ b/.coveragerc
@@ -23,3 +23,6 @@ exclude_lines =
# Type checking code not executed during pytest runs
if TYPE_CHECKING:
@overload
+
+ # Abstract methods are not exectued during pytest runs
+ raise NotImplementedError()