Skip to content

Commit

Permalink
ci: flake8 workflow made more strict again (and CONTRIBUTING.md updat…
Browse files Browse the repository at this point in the history
…ed.)
  • Loading branch information
fjosw committed Feb 26, 2023
1 parent 854b46c commit e85d7df
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/flake8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,6 @@ jobs:
- name: flake8 Lint
uses: py-actions/flake8@v2
with:
ignore: "E501,E121,E123,E126,E226,E24,E704,W503,W504"
ignore: "E501,W503"
exclude: "__init__.py, input/__init__.py"
path: "pyerrors"
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,6 @@ pytest --cov=pyerrors --cov-report html
```
The linter `flake8` is executed with the command
```
flake8 --extend-ignore=E501 --exclude=__init__.py pyerrors
flake8 --ignore=E501,W503 --exclude=__init__.py pyerrors
```
Please make sure that all tests are passed for a new pull requests.

0 comments on commit e85d7df

Please sign in to comment.