Avoid pylint warning for "protected-access" 75/48475/5
authorRodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com>
Wed, 6 Dec 2017 16:52:36 +0000 (16:52 +0000)
committerRodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com>
Tue, 12 Dec 2017 15:12:53 +0000 (15:12 +0000)
This warning should be disabled in order to access protected
methods during testing. Any access to protected methods done
outside the testing classes, must be catched during the reviewing
process.

Change-Id: I2127b41edf704d0cb4f68b33d98705039e058d1a
Signed-off-by: Rodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com>
.pylintrc

index cc09592..f8a60a6 100644 (file)
--- a/.pylintrc
+++ b/.pylintrc
@@ -41,6 +41,7 @@ disable=
  no-init,
  non-parent-init-called,
  not-callable,
+ protected-access,
  redefined-builtin,
  redefined-outer-name,
  signature-differs,