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
This commit is contained in:
Andreas Jaeger 2016-02-11 17:18:29 +01:00
parent a12917dab0
commit 561228ae5d
1 changed files with 2 additions and 2 deletions

View File

@ -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.