Skip to content

Commit

Permalink
CircleCI: find Python syntax errors and undefined names
Browse files Browse the repository at this point in the history
Like dependabot#1375 but without GitHub Actions.  Find syntax errors and undefined names in Python code like the ones fixed in dependabot#1219.
  • Loading branch information
cclauss authored Sep 10, 2019
1 parent 34d3471 commit 17a7772
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -132,7 +132,11 @@ jobs:
- ~/dependabot-core/npm_and_yarn/helpers/node_modules

# Run code formatting linters
- run: cd npm_and_yarn/helpers && yarn lint
- run: |
python3 -m pip install flake8
flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics
cd npm_and_yarn/helpers
yarn lint
# Run tests
- store_test_results:
Expand Down

0 comments on commit 17a7772

Please sign in to comment.