aboutsummaryrefslogtreecommitdiffstats
path: root/.pylintrc
diff options
context:
space:
mode:
authorRodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com>2017-12-06 16:52:36 +0000
committerRodolfo Alonso Hernandez <rodolfo.alonso.hernandez@intel.com>2017-12-12 15:12:53 +0000
commitf11f755048b23a66962304e61691cab7cc639f29 (patch)
tree2bf9fe7b0e064396a8a3e4b9ca88fc1b2882c350 /.pylintrc
parenta55aa99ae1df1f01abd4f9a9765c136c665772bf (diff)
Avoid pylint warning for "protected-access"
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>
Diffstat (limited to '.pylintrc')
-rw-r--r--.pylintrc1
1 files changed, 1 insertions, 0 deletions
diff --git a/.pylintrc b/.pylintrc
index cc09592ab..f8a60a636 100644
--- 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,