aboutsummaryrefslogtreecommitdiffhomepage
path: root/.pylintrc-tests
diff options
context:
space:
mode:
Diffstat (limited to '.pylintrc-tests')
-rw-r--r--.pylintrc-tests9
1 files changed, 9 insertions, 0 deletions
diff --git a/.pylintrc-tests b/.pylintrc-tests
index e68755c674..d9cc4d107e 100644
--- a/.pylintrc-tests
+++ b/.pylintrc-tests
@@ -1,3 +1,10 @@
+[MASTER]
+ignore=
+ src/python/grpcio_tests/tests/unit/beta,
+ src/python/grpcio_tests/tests/unit/framework,
+ src/python/grpcio_tests/tests/unit/framework/common,
+ src/python/grpcio_tests/tests/unit/framework/foundation,
+
[VARIABLES]
# TODO(https://github.com/PyCQA/pylint/issues/1345): How does the inspection
@@ -115,3 +122,5 @@ disable=
# if:/else: and for:/else:.
useless-else-on-loop,
no-else-return,
+ # NOTE(lidiz): Python 3 make object inheritance default, but not PY2
+ useless-object-inheritance,