From f0b9c7cb672c2569e4ebbe18be1b2ffb21807ee8 Mon Sep 17 00:00:00 2001 From: Joseph Frazier <1212jtraceur@gmail.com> Date: Wed, 5 Oct 2016 11:29:32 -0400 Subject: [PATCH] Ignore remaining flake8 rules and exclude ./venv/ This should fix the builds. --- tox.ini | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tox.ini b/tox.ini index 1d98a69a..09a0d9db 100644 --- a/tox.ini +++ b/tox.ini @@ -4,3 +4,7 @@ envlist = py27,py33,py34,py35 [testenv] deps = -rrequirements.txt commands = py.test -v --capture=sys + +[flake8] +ignore = E501,W503 +exclude = venv