Skip to content

Commit

Permalink
pylint on GitHub actions returns a false positive cyclic-import
Browse files Browse the repository at this point in the history
pylint-dev/pylint#2573

Modifying to `-j 2` to test
  • Loading branch information
jaidisido committed Jun 13, 2022
1 parent fcb2868 commit 9641cee
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/static-checking.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@ jobs:
python -m pip install --upgrade pip
python -m pip install poetry
poetry config virtualenvs.create false --local
poetry install --extras "sqlserver" -vvv
poetry install --extras "sqlserver sparql" -vvv
- name: mypy check
run: mypy --install-types --non-interactive awswrangler
- name: Flake8 Lint
run: flake8 .
- name: Pylint Lint
run: pylint -j 0 awswrangler
run: pylint -j 2 awswrangler
- name: Black style
run: black --check .
- name: Imports order check (isort)
Expand Down

0 comments on commit 9641cee

Please sign in to comment.