From 561228ae5ded7aedca6b73655ca84977c461fdfa Mon Sep 17 00:00:00 2001 From: Andreas Jaeger Date: Thu, 11 Feb 2016 17:18:29 +0100 Subject: [PATCH] Use pep8 instead of linters According to the PTI (=Python Test Interface, http://governance.openstack.org/reference/cti/python_cti.html), pep8 is the interface for codestyle checks. Move all tests from linters to pep8. Change-Id: Iaed26949d4a63d82bb26696ab10a11fff0a91a18 --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 9e5751d9..cc7e00b4 100644 --- a/tox.ini +++ b/tox.ini @@ -1,6 +1,6 @@ [tox] minversion = 1.6 -envlist = py34,py27,linters +envlist = py34,py27,pep8 skipsdist = True [testenv] @@ -10,7 +10,7 @@ setenv = VIRTUAL_ENV={envdir} deps = -r{toxinidir}/test-requirements.txt -[testenv:linters] +[testenv:pep8] commands = flake8 # Run doc8 to check .rst and .txt files.