Skip to content

Commit

Permalink
delete tests_from_past from linters cause unnecessary
Browse files Browse the repository at this point in the history
  • Loading branch information
aleksandr-kotlyar committed Jan 7, 2022
1 parent 14f41a7 commit 01bfd34
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/linters.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ jobs:
- name: Pycodestyle
run: |
pip install pycodestyle
pycodestyle $(pwd) --ignore=E501,W503,E402,E731 --exclude=.venv,tests_from_past
pycodestyle $(pwd) --ignore=E501,W503,E402,E731 --exclude=.venv
Pylint:
name: Lint Pylint
Expand All @@ -42,7 +42,7 @@ jobs:
run: |
pip install pylint
touch __init__.py
pylint $(pwd) --rcfile=.pylintrc --disable="$(cat .pylint-disabled-rules)" --ignore-patterns=.venv,tests_from_past
pylint $(pwd) --rcfile=.pylintrc --disable="$(cat .pylint-disabled-rules)" --ignore-patterns=.venv
rm __init__.py
Pylint-full-report:
Expand All @@ -59,5 +59,5 @@ jobs:
run: |
pip install pylint
touch __init__.py
pylint $(pwd) --rcfile=.pylintrc --disable="" --ignore-patterns=.venv,tests_from_past --exit-zero
pylint $(pwd) --rcfile=.pylintrc --disable="" --ignore-patterns=.venv --exit-zero
rm __init__.py

0 comments on commit 01bfd34

Please sign in to comment.