From b461010f32bb60cca1718a0542a4426f73a61758 Mon Sep 17 00:00:00 2001 From: Daniel Hahler Date: Mon, 18 Nov 2019 18:12:13 +0100 Subject: [PATCH] mypy: config: use mypy_path=src MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This allows for checking files inside of "testing" without having "src/…" as an argument also. --- setup.cfg | 1 + 1 file changed, 1 insertion(+) diff --git a/setup.cfg b/setup.cfg index 0c0cb4861..42d5b9460 100644 --- a/setup.cfg +++ b/setup.cfg @@ -63,6 +63,7 @@ ignore = formats = sdist.tgz,bdist_wheel [mypy] +mypy_path = src ignore_missing_imports = True no_implicit_optional = True strict_equality = True