Skip to content

Commit

Permalink
Add a check for w1203
Browse files Browse the repository at this point in the history
  • Loading branch information
a-masterov committed Jul 9, 2024
1 parent c734077 commit 9ea7171
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/pylint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,9 @@ jobs:
pip install pylint psycopg2 pytest toml aiohttp backoff requests allure-pytest \
pytest-httpserver prometheus_client asyncpg PyJWT httpx psutil boto3 mypy_boto3_s3 \
zstandard numpy pandas pgvector pytest-lazy-fixture pg8000 websockets
- name: Analyzing code with pylint
- name: Analyzing code for errors with pylint
run: |
pylint -E --ignored-modules psycopg2 $(git ls-files '*.py')
- name: Analyzing code for fixed warnings
run: |
pylint --disable=all --enable=w1203 $(git ls-files '*.py')

0 comments on commit 9ea7171

Please sign in to comment.