Skip to content

Commit cdf2e37

Browse files
committed
Bump minimum pylint version to 1.6.3.
Allow it to check files that cause 1.6.0 to barf.
1 parent b602d18 commit cdf2e37

2 files changed

Lines changed: 3 additions & 5 deletions

File tree

scripts/run_pylint.py

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,6 @@
3737
]
3838
IGNORED_FILES = [
3939
os.path.join('docs', 'conf.py'),
40-
# Both these files cause pylint 1.6 to barf. See:
41-
# https://github.com/PyCQA/pylint/issues/998
42-
os.path.join('gcloud', 'bigtable', 'happybase', 'connection.py'),
43-
os.path.join('gcloud', 'streaming', 'http_wrapper.py'),
4440
'setup.py',
4541
]
4642
SCRIPTS_DIR = os.path.abspath(os.path.dirname(__file__))

tox.ini

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,10 +133,12 @@ commands =
133133
python {toxinidir}/scripts/run_pylint.py
134134
deps =
135135
pep8
136-
pylint
136+
pylint >= 1.6.3
137137
unittest2
138138
psutil
139139
Sphinx
140+
setenv =
141+
PYTHONPATH =
140142
passenv = {[testenv:system-tests]passenv}
141143

142144
[testenv:system-tests]

0 commit comments

Comments
 (0)