Skip to content

Commit ab68511

Browse files
sbryngelsonclaude
andcommitted
TEMP: disable CMakeLists test; fix pylint too-many-locals
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
1 parent db6163d commit ab68511

File tree

2 files changed

+4
-5
lines changed

2 files changed

+4
-5
lines changed

toolchain/mfc/test/coverage.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ def _compute_gcov_prefix_strip(root_dir: str) -> str:
207207
return str(len(Path(real_root).parts) - 1) # -1 excludes root '/'
208208

209209

210-
def _collect_single_test_coverage(
210+
def _collect_single_test_coverage( # pylint: disable=too-many-locals
211211
uuid: str, test_gcda: str, root_dir: str, gcov_bin: str,
212212
) -> tuple:
213213
"""

toolchain/mfc/test/test_coverage_unit.py

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -249,10 +249,9 @@ def test_case_validator_triggers_all(self):
249249
{"toolchain/mfc/case_validator.py"}
250250
) is True
251251

252-
def test_cmakelists_triggers_all(self):
253-
assert should_run_all_tests(
254-
{"CMakeLists.txt"}
255-
) is True
252+
# TEMP: CMakeLists.txt disabled in ALWAYS_RUN_ALL for dep-change test
253+
# def test_cmakelists_triggers_all(self):
254+
# assert should_run_all_tests({"CMakeLists.txt"}) is True
256255

257256
def test_case_fpp_triggers_all(self):
258257
assert should_run_all_tests(

0 commit comments

Comments
 (0)