aboutsummaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg12
1 files changed, 12 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
index b05edd9..4c6a084 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -42,6 +42,18 @@ warn_unused_ignores = False
# to proper modules
disallow_untyped_defs = False
+[mypy-test.*]
+allow_untyped_defs = True
+strict = False
+
[flake8]
ignore = E731,D105,D107
max-line-length = 100
+per-file-ignores =
+ test/*:D100,D103
+
+[coverage:run]
+omit =
+ # This file should only be an entry-point stub, meaning that there
+ # is nothing meaningfull to test.
+ mu4web/__main__.py