From 46bedb916aae93b6eb60d2318dd352b166669ddb Mon Sep 17 00:00:00 2001 From: NishaSharma14 Date: Thu, 4 Jan 2024 13:54:23 +0100 Subject: [PATCH] ignore lwreg in pylint --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index c67c001..c9a1698 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -59,7 +59,7 @@ jobs: pip install flake8 pytest - name: Analysing the code with pylint run: | - flake8 --per-file-ignores="__init__.py:F401" --ignore E402,E501,W503 $(git ls-files 'app/*.py') . + flake8 --per-file-ignores="__init__.py:F401" --ignore E402,E501,W503 $(git ls-files 'app/*.py') --ignore=lwreg/lwreg/ . - name: Run test run: | python3 -m pytest -p no:warnings --ignore=lwreg/lwreg/test-cli.py --ignore=lwreg/lwreg/test_lwreg.py