summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNejc Habjan <nejc.habjan@siemens.com>2022-05-06 01:27:29 +0200
committerGitHub <noreply@github.com>2022-05-06 01:27:29 +0200
commitd169983abbc6094bcddac14a377b4196bc1fac4e (patch)
tree27429df7a01b3db537752deb69186a049af82b3e
parent5cb2859e7c4f8390546f794417ca800ee46d3293 (diff)
parent989a12b79ac7dff8bf0d689f36ccac9e3494af01 (diff)
downloadgitlab-d169983abbc6094bcddac14a377b4196bc1fac4e.tar.gz
Merge pull request #2008 from python-gitlab/jlvillal/mypy-tox
chore: exclude `build/` directory from mypy check
-rw-r--r--pyproject.toml1
1 files changed, 1 insertions, 0 deletions
diff --git a/pyproject.toml b/pyproject.toml
index f05a44e..0480feb 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -5,6 +5,7 @@ order_by_type = false
[tool.mypy]
files = "."
+exclude = "build/.*"
# 'strict = true' is equivalent to the following:
check_untyped_defs = true