From 995f730f5a3d76fb2aa0b8260f92ca25667e9972 Mon Sep 17 00:00:00 2001
From: Dan Prince <dprince@redhat.com>
Date: Tue, 5 Mar 2013 21:01:02 -0500
Subject: [PATCH] Make run_tests.sh pep8 conf match tox.

Updates our run_tests.sh pep8 excludes so that match what we do
in tox.ini (Adds E711,E712 to the exclude list)

Change-Id: Iaf2cee898a957847d444aa7c48db1d4ad088ab6e
---
 run_tests.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/run_tests.sh b/run_tests.sh
index d37323dc67..62179f22cb 100755
--- a/run_tests.sh
+++ b/run_tests.sh
@@ -103,7 +103,7 @@ function run_pep8 {
   PEP8_EXCLUDE="vcsversion.py,*.pyc,openstack"
   # we now turn off pep8 1.3 E125 check to avoid make change to 
   # openstack-common . 
-  PEP8_OPTIONS="--exclude=$PEP8_EXCLUDE --ignore=E125 --repeat --show-source"
+  PEP8_OPTIONS="--exclude=$PEP8_EXCLUDE --ignore=E125,E711,E712 --repeat --show-source"
   PEP8_INCLUDE="bin/* quantum run_tests.py setup*.py"
   ${wrapper} pep8 $PEP8_OPTIONS $PEP8_INCLUDE
 }