Skip to content

Commit

Permalink
add flake8 config to pyproject.toml, add flake8-docstrings plugin to …
Browse files Browse the repository at this point in the history
…repo, add .pylintrc config from Google
  • Loading branch information
pmayd committed Apr 3, 2022
1 parent a9bbd18 commit fefeb5d
Show file tree
Hide file tree
Showing 5 changed files with 548 additions and 35 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/run-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ jobs:
- name: Run isort
run: poetry run isort . --check-only --profile black
- name: Run flake8
run: poetry run flake8 src
run: poetry run flake8 src --output-file=flake8_report.txt
- name: Run pylint
run: poetry run pylint src --recursive=y
- name: Run bandit
Expand Down Expand Up @@ -93,4 +93,4 @@ jobs:
- name: Install dependencies
run: poetry install
- name: Run pdoc3
run: poetry run pdoc3 ./src/pygenesis --html -o doc --skip-errors
run: poetry run pdoc3 ./src/pygenesis --html -o docs --skip-errors
Loading

0 comments on commit fefeb5d

Please sign in to comment.