mirror of
https://github.com/fjosw/pyerrors.git
synced 2025-05-14 11:33:42 +02:00
ci: E722 removed from flake8 exceptions.
This commit is contained in:
parent
3fd63f8b67
commit
615cd05f22
2 changed files with 2 additions and 2 deletions
2
.github/workflows/flake8.yml
vendored
2
.github/workflows/flake8.yml
vendored
|
@ -21,6 +21,6 @@ jobs:
|
||||||
- name: flake8 Lint
|
- name: flake8 Lint
|
||||||
uses: py-actions/flake8@v1
|
uses: py-actions/flake8@v1
|
||||||
with:
|
with:
|
||||||
ignore: "E501,E722"
|
ignore: "E501"
|
||||||
exclude: "__init__.py, input/__init__.py"
|
exclude: "__init__.py, input/__init__.py"
|
||||||
path: "pyerrors"
|
path: "pyerrors"
|
||||||
|
|
|
@ -30,6 +30,6 @@ pytest --cov=pyerrors --cov-report html
|
||||||
```
|
```
|
||||||
The linter `flake8` is executed with the command
|
The linter `flake8` is executed with the command
|
||||||
```
|
```
|
||||||
flake8 --ignore=E501,E722 --exclude=__init__.py pyerrors
|
flake8 --ignore=E501 --exclude=__init__.py pyerrors
|
||||||
```
|
```
|
||||||
Please make sure that all tests are passed for a new pull requests.
|
Please make sure that all tests are passed for a new pull requests.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue