pylint's check for unused variables, global statements, redefined builtins, undefined loop variables, and unused imports are disabled. The current configuration allows git-p4.py to pass the check in Travis CI in my forked repository. Here is the link for the successful built: https://travis-ci.org/VietHTran/git/builds/353155158 Signed-off-by: Viet Hung Tran <viethtran1620@xxxxxxxxx> --- .pylintrc | 7 ------- 1 file changed, 7 deletions(-) diff --git a/.pylintrc b/.pylintrc index 0db42d646..09a0019d6 100644 --- a/.pylintrc +++ b/.pylintrc @@ -60,20 +60,13 @@ enable=import-error, used-before-assignment, cell-var-from-loop, global-variable-undefined, - redefined-builtin, redefine-in-handler, - unused-import, unused-wildcard-import, global-variable-not-assigned, - undefined-loop-variable, - global-statement, global-at-module-level, bad-open-mode, redundant-unittest-assert, boolean-datetime, - # Has common issues with our style due to - # https://github.com/PyCQA/pylint/issues/210 - unused-variable # Things we'd like to enable someday: # redefined-outer-name (requires a bunch of work to clean up our code first) -- 2.16.2.440.gc6284da