Skip to content
Snippets Groups Projects
Commit f1db70de authored by Campbell Barton's avatar Campbell Barton
Browse files

check_mypy: include make_source_archive.py

parent d961160c
Branches
Tags
No related merge requests found
......@@ -83,8 +83,7 @@ def main() -> None:
if not extra_env:
extra_env = {}
# print(f)
print(repr(f[len('/src/blender/'):]) + ',')
print(f)
cmd = (
"mypy",
"--strict",
......
......@@ -8,6 +8,7 @@ from typing import (
PATHS: Tuple[Tuple[str, Tuple[Any, ...], Dict[str, str]], ...] = (
("build_files/cmake/", (), {'MYPYPATH': "modules"}),
("build_files/utils/", (), {'MYPYPATH': "modules"}),
("doc/manpage/blender.1.py", (), {}),
("source/tools/check_source/", (), {'MYPYPATH': "modules"}),
("source/tools/utils_maintenance/", (), {'MYPYPATH': "modules"}),
......@@ -27,6 +28,9 @@ BLACKLIST = set(
"build_files/cmake/cmake_static_check_smatch.py",
"build_files/cmake/cmake_static_check_sparse.py",
"build_files/cmake/cmake_static_check_splint.py",
"build_files/utils/make_test.py",
"build_files/utils/make_update.py",
"build_files/utils/make_utils.py",
"source/tools/check_source/check_descriptions.py",
"source/tools/check_source/check_header_duplicate.py",
"source/tools/check_source/check_spelling.py",
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment