1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | diff --git a/tox.ini b/tox.ini
index d65ec48f..4f2240aa 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
[tox]
-envlist = py27, py3, flake8, xenial
+envlist = py27, py3, flake8, xenial, pylint
recreate = True
[testenv]
@@ -18,7 +18,7 @@ setenv =
LC_ALL = en_US.utf-8
[testenv:pylint]
-deps = pylint
+deps = pylint==1.6.5
commands = {envpython} -m pylint {posargs:cloudinit}
[testenv:py3]
|