Skip to content

Commit

Permalink
debug commit 2
Browse files Browse the repository at this point in the history
  • Loading branch information
Furrior committed Jul 12, 2023
1 parent cc69ef1 commit 7144723
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/ci/unticked_files.py
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ def get_unticked_files(root:Path):
print(f'Found {len(included)} includes and {len(nested_dmes)} nested .dme\'s in {root / includer}')
ticked_files.update([root / Path(includer).parent / Path(PureWindowsPath(i)) for i in included])
print(f"DEBUG {nested_dmes}")
INCLUDER_FILES.extend([file.replace("\\\\", "/") for file in nested_dmes])
INCLUDER_FILES.extend([file.replace("\\", "/") for file in nested_dmes])

all_dm_files = {f for f in root.glob('**/*.dm')}
return all_dm_files - ticked_files - {root / f for f in IGNORE_FILES}
Expand Down

0 comments on commit 7144723

Please sign in to comment.