From 5b50f2c3eb006097d56077a1fb98ff60687303c8 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Richard=20Kub=C3=AD=C4=8Dek?= Date: Wed, 5 Mar 2025 13:15:43 +0100 Subject: [PATCH] ga: fix workflow for pylint --- .github/workflows/pylint.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index f9dcc8e..56cb694 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -20,7 +20,7 @@ jobs: pip install pylint - name: pylint run: | - pylint $(git ls-files '*.py') --fail-under=9.0 --output-format=json > pylint-report.json + pylint $(git ls-files '*.py' | grep -v '^test/') --fail-under=9.0 --output-format=json > pylint-report.json - name: Generate Pylint Score id: pylint_score