From 9641cee1986e23ac7819765655f8c38d6fc12a0f Mon Sep 17 00:00:00 2001 From: Abdel Jaidi Date: Mon, 13 Jun 2022 14:56:42 +0100 Subject: [PATCH] pylint on GitHub actions returns a false positive cyclic-import https://github.com/PyCQA/pylint/issues/2573 Modifying to `-j 2` to test --- .github/workflows/static-checking.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/static-checking.yml b/.github/workflows/static-checking.yml index e41712c4f..02c3cb8b5 100644 --- a/.github/workflows/static-checking.yml +++ b/.github/workflows/static-checking.yml @@ -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)