From 01bfd34b5faae9c7c0c9c8f33ed43537b6e96e3a Mon Sep 17 00:00:00 2001 From: Aleksandr Kotlyar Date: Fri, 7 Jan 2022 09:13:19 +0300 Subject: [PATCH] delete tests_from_past from linters cause unnecessary --- .github/workflows/linters.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/linters.yml b/.github/workflows/linters.yml index 9a56a458..8840d3db 100644 --- a/.github/workflows/linters.yml +++ b/.github/workflows/linters.yml @@ -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 @@ -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: @@ -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