Skip to content

Commit

Permalink
fix linting for new src heirarchy
Browse files Browse the repository at this point in the history
  • Loading branch information
shyamd committed Jan 20, 2022
1 parent 3af3908 commit 7affef9
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/testing.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,20 +30,21 @@ jobs:
- name: Lint with pycodestyle
run: |
pip install pycodestyle
pycodestyle mkdocs_bibtex
pycodestyle src
- name: Lint with mypy
run: |
pip install mypy
mypy mkdocs_bibtex
mypy src
- name: Lint with flake8
run: |
pip install flake8
# stop the build if there are Python syntax errors or undefined names
flake8 --count --show-source --statistics mkdocs_bibtex
flake8 --count --show-source --statistics src
# exit-zero treats all errors as warnings.
flake8 --count --exit-zero --max-complexity=20 --statistics mkdocs_bibtex
flake8 --count --exit-zero --max-complexity=20 --statistics src
test:
strategy:
max-parallel: 6
Expand Down

0 comments on commit 7affef9

Please sign in to comment.