Skip to content

Commit

Permalink
[#32] Disable pylint warnings fired from test_zs.sh script
Browse files Browse the repository at this point in the history
  • Loading branch information
mikir committed Oct 14, 2022
1 parent 2ba737d commit fdaf1f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/test_zs.sh
Original file line number Diff line number Diff line change
Expand Up @@ -346,8 +346,8 @@ test_zs()
GEN_DISABLE_OPTION+="too-many-public-methods, too-few-public-methods, too-many-locals, "
GEN_DISABLE_OPTION+="too-many-branches, too-many-statements, unneeded-not, superfluous-parens, "
GEN_DISABLE_OPTION+="import-self, invalid-unary-operand-type, c-extension-no-member, "
GEN_DISABLE_OPTION+="too-many-lines, simplifiable-if-expression",
GEN_DISABLE_OPTION+="consider-using-in, too-many-return-statements, anomalous-backslash-in-string"
GEN_DISABLE_OPTION+="too-many-lines, simplifiable-if-expression, consider-using-in, ",
GEN_DISABLE_OPTION+="too-many-return-statements, anomalous-backslash-in-string, empty-docstring"

local PYLINT_ARGS=("--disable=${GEN_DISABLE_OPTION}" "--ignore=api.py")
PYTHONPATH="${GEN_PYTHON_DIR}:${PYTHON_RUNTIME_ROOT}" \
Expand Down

0 comments on commit fdaf1f9

Please sign in to comment.