Skip to content

Commit

Permalink
Merge pull request #6 from blueyed/ignore-foo_test-dirs
Browse files Browse the repository at this point in the history
Ignore directories matching *_test(s)
  • Loading branch information
carlio committed Jun 29, 2015
2 parents b751804 + 3a2e232 commit 589b272
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions dodgy/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@
r'(^|%(sep)s)\.[^\.]', # ignores any files or directories starting with '.'
r'^tests?%(sep)s?',
r'%(sep)stests?(%(sep)s|$)',
# Ignore foo_test(s)/.
r'_tests?(%(sep)s|$)',
)]


Expand Down

0 comments on commit 589b272

Please sign in to comment.