Skip to content

Commit

Permalink
Ignore git-fleximod files when linting.
Browse files Browse the repository at this point in the history
  • Loading branch information
nusbaume committed Jul 10, 2024
1 parent 2af1b03 commit d1c6dd6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/scripts/pr_mod_file_tests.py
Original file line number Diff line number Diff line change
Expand Up @@ -197,10 +197,10 @@ def _main_prog():
#PR itself, so don't check its file type:
if os.path.exists(file_obj.filename):

#Don't analyze 'manage_externals' files,
#Don't analyze 'git-fleximod' files,
#as they are an external repo and thus
#not our responsibility:
if 'manage_externals' not in file_obj.filename:
if 'git-fleximod' not in file_obj.filename:

#Check if it is a python file:
if _file_is_python(file_obj.filename):
Expand Down

0 comments on commit d1c6dd6

Please sign in to comment.