Skip to content

Commit

Permalink
fixing pylint recursion issue
Browse files Browse the repository at this point in the history
  • Loading branch information
ryandeivert committed Feb 20, 2019
1 parent 5ea5b07 commit a54a1c4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/ci_tests.sh
Expand Up @@ -12,7 +12,7 @@ printf "\n~~~~~~~~~~ [4] Measure Coverage ~~~~~~~~~~\n" &&
coverage report && # Required coverage threshold specified in .coveragerc

printf "\n~~~~~~~~~~ [5] Pylint ~~~~~~~~~~\n" &&
pylint cli lambda_functions rules tests *.py -j 1 && # Config in .pylintrc
pylint --init-hook="import sys; sys.setrecursionlimit(2000)" cli lambda_functions rules tests *.py -j 1 && # Config in .pylintrc. Max recursion needed in python3.7

printf "\n~~~~~~~~~~ [6] Build Documentation ~~~~~~~~~~\n" &&
sphinx-build -W docs/source docs/build &&
Expand Down

0 comments on commit a54a1c4

Please sign in to comment.