Merge pull request #1044 from klangner/master

py3-ignores.txt supports comments
This commit is contained in:
Mikhail Korobov 2015-02-10 15:03:34 +05:00
commit 7a745b105c
2 changed files with 6 additions and 3 deletions

2
.gitignore vendored
View File

@ -1,3 +1,5 @@
/.vagrant
/scrapy.iml
*.pyc
_trial_temp*
dropin.cache

View File

@ -9,9 +9,10 @@ if 'django' not in optional_features:
collect_ignore.append("tests/test_djangoitem/models.py")
if six.PY3:
for fn in open('tests/py3-ignores.txt'):
if fn.strip():
collect_ignore.append(fn.strip())
for line in open('tests/py3-ignores.txt'):
file_path = line.strip()
if len(file_path) > 0 and file_path[0] != '#':
collect_ignore.append(file_path)
class LogObservers:
"""Class for keeping track of log observers across test modules"""