From: Rodolfo Alonso Hernandez Date: Wed, 6 Dec 2017 16:52:36 +0000 (+0000) Subject: Avoid pylint warning for "protected-access" X-Git-Tag: opnfv-6.0.0~257 X-Git-Url: https://gerrit.opnfv.org/gerrit/gitweb?a=commitdiff_plain;h=f11f755048b23a66962304e61691cab7cc639f29;p=yardstick.git 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 --- 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,