Move pylint dependency to tox.ini

We do not run a gate job against oslo.vmware using pylint, so move the
dependency out of the synced requirements and into the tox environment
settings instead. If that's no longer useful, we can remove the tox
environment completely.

Change-Id: Ice3527b8d92137d04fd77e7e800a5875fa7fdaf2
This commit is contained in:
Doug Hellmann
2015-03-20 16:14:39 +00:00
parent 5de2c31e9d
commit 3879e83ff6
2 changed files with 3 additions and 1 deletions

View File

@@ -4,7 +4,6 @@
# Hacking already pins down pep8, pyflakes and flake8
hacking>=0.9.2,<0.10
pylint>=1.3.0 # GNU GPL v2
discover
fixtures>=0.3.14

View File

@@ -19,6 +19,9 @@ deps = -r{toxinidir}/requirements-py3.txt
commands = flake8
[testenv:pylint]
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
pylint>=1.3.0
commands = pylint oslo
[testenv:docs]