Add tox.ini with pep8 tests to fix CI

* Add tox.ini with pep8 tests so 'gate-fuel-web-pep8' is able to
  actually run
* Ignore all existing pep8 errors and warnings to unblock merging in
  stable/6.1, but prevent any more pep8 errors and warnings

Change-Id: Iad59da7f8e5af901e7c9fa830f3a6ebe81d021b3
Related-Bug: #1511787
This commit is contained in:
Igor Belikov 2015-11-02 17:12:48 +03:00 committed by Alexey Shtokolov
parent dac001b4fe
commit 521237cf7a
1 changed files with 10 additions and 0 deletions

10
tox.ini Normal file
View File

@ -0,0 +1,10 @@
[tox]
minversion = 1.6
skipsdist = True
setupdir = {toxinidir}/nailgun
envlist = pep8
[testenv:pep8]
deps = hacking==0.7
commands =
flake8 --ignore=H301 {posargs:nailgun}