From 3339e7a3935439291704cd588344a0855e1f91cf Mon Sep 17 00:00:00 2001 From: Tony Narlock Date: Sat, 27 May 2023 07:31:42 -0500 Subject: [PATCH] ci: Add mypy default files --- pyproject.toml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/pyproject.toml b/pyproject.toml index a77ca0e..a5cabd5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -96,6 +96,10 @@ sphinx = "pytest_doctest_docutils" [tool.mypy] strict = true +files = [ + "src/", + "tests/", +] [build-system] requires = ["poetry_core>=1.0.0"]