diff --git a/README.md b/README.md index 87cdf3100..07364d5f3 100644 --- a/README.md +++ b/README.md @@ -26,9 +26,6 @@ conf layout. #. Test code base: `./venv/bin/tox` -#. Check coding style for the whole project `./venv/bin/pylint letsencrypt`, - or specific module, e.g. `./venv/bin/pylint letsencrypt.client.acme`. - ## Command line usage ``` diff --git a/tox.ini b/tox.ini index d4df3e8bf..4e894d2c3 100644 --- a/tox.ini +++ b/tox.ini @@ -4,7 +4,7 @@ # and then run "tox" from this directory. [tox] -envlist = py26, py27 +envlist = py26, py27, lint [testenv] # install_command requires tox>=1.6 @@ -12,3 +12,6 @@ install_command = pip install --process-dependency-links {opts} {packages} commands = nosetests deps = nose + +[testenv:lint] +commands = pylint letsencrypt