Skip to content

Commit f1db70d

Browse files
committed
check_mypy: include make_source_archive.py
1 parent d961160 commit f1db70d

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

check_source/check_mypy.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,7 @@ def main() -> None:
8383
if not extra_env:
8484
extra_env = {}
8585

86-
# print(f)
87-
print(repr(f[len('/src/blender/'):]) + ',')
86+
print(f)
8887
cmd = (
8988
"mypy",
9089
"--strict",

check_source/check_mypy_config.py

+4
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88

99
PATHS: Tuple[Tuple[str, Tuple[Any, ...], Dict[str, str]], ...] = (
1010
("build_files/cmake/", (), {'MYPYPATH': "modules"}),
11+
("build_files/utils/", (), {'MYPYPATH': "modules"}),
1112
("doc/manpage/blender.1.py", (), {}),
1213
("source/tools/check_source/", (), {'MYPYPATH': "modules"}),
1314
("source/tools/utils_maintenance/", (), {'MYPYPATH': "modules"}),
@@ -27,6 +28,9 @@
2728
"build_files/cmake/cmake_static_check_smatch.py",
2829
"build_files/cmake/cmake_static_check_sparse.py",
2930
"build_files/cmake/cmake_static_check_splint.py",
31+
"build_files/utils/make_test.py",
32+
"build_files/utils/make_update.py",
33+
"build_files/utils/make_utils.py",
3034
"source/tools/check_source/check_descriptions.py",
3135
"source/tools/check_source/check_header_duplicate.py",
3236
"source/tools/check_source/check_spelling.py",

0 commit comments

Comments
 (0)