From 02d8fa139357677240d55248b7bb8ad4d6a90c0a Mon Sep 17 00:00:00 2001
From: Julia Kreger <juliaashleykreger@gmail.com>
Date: Tue, 8 May 2018 10:15:03 -0700
Subject: [PATCH] Ignore new errors until we're able to fix them

Since blocking the package doesn't seem to be a good
solution to unblock the gate, lets go ahead and ingore
the errors until we are able to fix the issues in the
code.

Change-Id: I72496493359fa11eb122368479ee1ae9b87d82f2
Story: #2001985
Task: #19603
---
 tox.ini | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/tox.ini b/tox.ini
index 745fa3aaad..ae7e6e2fb0 100644
--- a/tox.ini
+++ b/tox.ini
@@ -106,7 +106,9 @@ commands = {posargs}
 
 [flake8]
 # [W503] Line break before binary operator.
-ignore = E129,W503
+# NOTE(TheJulia): Adding E305,W504,W605,W606,E501,F405 to the ignore list
+# until we are able to clean them up in the code base.
+ignore = E129,W503,E305,W504,W605,W606,E501,F405
 filename = *.py,app.wsgi
 exclude =  .venv,.git,.tox,dist,doc,*lib/python*,*egg,build
 import-order-style = pep8