From: Dylan Baker <baker.dyla...@gmail.com>

Signed-off-by: Dylan Baker <dylanx.c.ba...@intel.com>
---
 tests/all.py | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

diff --git a/tests/all.py b/tests/all.py
index 9f1b4f3..03da7cd 100644
--- a/tests/all.py
+++ b/tests/all.py
@@ -20,6 +20,10 @@ __all__ = ['profile']
 # doesn't trigger an error)
 # pylint: disable=bad-continuation
 
+# Shadowing variables is a bad practice. It's just nearly impossible with the
+# format of this module to avoid it.
+# pylint: disable=redefined-outer-name
+
 
 def add_single_param_test_set(adder, name, *params):
     for param in params:
@@ -201,7 +205,7 @@ def power_set(s):
 
 ######
 # Collecting all tests
-profile = TestProfile()
+profile = TestProfile()  # pylint: disable=invalid-name
 
 # Find and add all shader tests.
 for basedir in [TESTS_DIR, GENERATED_TESTS_DIR]:
-- 
2.6.2

_______________________________________________
Piglit mailing list
Piglit@lists.freedesktop.org
http://lists.freedesktop.org/mailman/listinfo/piglit

Reply via email to