Skip to content

Commit

Permalink
Commented on a line that inadvertantly slipped in commit 865cd35
Browse files Browse the repository at this point in the history
Ignoring __pycache__ directories fixes #17393 and prepare testing
with Python 3.
  • Loading branch information
claudep committed May 5, 2012
1 parent 865cd35 commit 208e26b
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions tests/runtests.py
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@ def get_test_modules():
for f in os.listdir(dirpath):
if (f.startswith('__init__') or
f.startswith('.') or
# Python 3 byte code dirs (PEP 3147)
f == '__pycache__' or
f.startswith('sql') or
os.path.basename(f) in REGRESSION_SUBDIRS_TO_SKIP):
Expand Down

0 comments on commit 208e26b

Please sign in to comment.