Skip to content

Commit

Permalink
[BEAM-3959] Added a flake F821 test
Browse files Browse the repository at this point in the history
  • Loading branch information
kamilwu committed Jul 1, 2019
1 parent be29804 commit 9af4b94
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions sdks/python/scripts/run_pylint.sh
Expand Up @@ -74,8 +74,7 @@ pylint -j8 ${MODULE} --ignore-patterns="$FILES_TO_IGNORE"
echo "Running pycodestyle for module $MODULE:"
pycodestyle ${MODULE} --exclude="$FILES_TO_IGNORE"
echo "Running flake8 for module $MODULE:"
# TODO(BEAM-3959): Add F821 (undefined names) as soon as that test passes
flake8 ${MODULE} --count --select=E9,F822,F823 --show-source --statistics
flake8 ${MODULE} --count --select=E9,F821,F822,F823 --show-source --statistics

echo "Running isort for module $MODULE:"
# Skip files where isort is behaving weirdly
Expand Down

0 comments on commit 9af4b94

Please sign in to comment.