Skip to content
This repository has been archived by the owner on Jan 30, 2022. It is now read-only.

Commit

Permalink
Merge pull request #3 from mietek/fix-ignore-for-scm
Browse files Browse the repository at this point in the history
Fix ignore not applying to paths generated by SCM
  • Loading branch information
jenanwise committed Jun 20, 2013
2 parents 05bca9f + bd30ac8 commit ee213e7
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions codequality/main.py
Expand Up @@ -89,6 +89,9 @@ def codequality(self, paths):
for filename, location in scmhandler.srcs_to_check(
paths, rev=self.options.rev):

if self._should_ignore(filename):
continue

checker_classes = self._relevant_checkers(filename)
for checker_class in checker_classes:
loc_to_filename = checker_to_loc_to_filename.setdefault(
Expand Down

0 comments on commit ee213e7

Please sign in to comment.