From d6b4587a554b51ba733b151e0d924735b63d07e0 Mon Sep 17 00:00:00 2001 From: Olga Saprycheva Date: Tue, 8 Mar 2016 10:57:56 -0600 Subject: [PATCH] Removed redundant file for flake8 check Change-Id: I4322978aa20ee731391f7709bbd79dee140fc703 --- tox.ini | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tox.ini b/tox.ini index 725134cbef..3d8d6d9569 100644 --- a/tox.ini +++ b/tox.ini @@ -29,7 +29,7 @@ commands = [testenv:pep8] basepython = python2.7 commands = - flake8 {posargs:swift test doc setup.py doc/source/conf.py} + flake8 {posargs:swift test doc setup.py} flake8 --filename=swift* bin [testenv:py3pep8] @@ -39,7 +39,7 @@ commands = # Gross hack. There's no other way to get it to /not/ install swift itself # (which triggers installing eventlet) but also get flake8 installed. pip install flake8 - flake8 swift test doc setup.py doc/source/conf.py + flake8 swift test doc setup.py flake8 --filename=swift* bin [testenv:func]