From 7999808639528561455adc5ad23899729e8c5f89 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20Marjam=C3=A4ki?= Date: Thu, 16 Jun 2022 09:09:44 +0200 Subject: [PATCH] ci: disable pylint because it fails to import files --- .github/workflows/scriptcheck.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/scriptcheck.yml b/.github/workflows/scriptcheck.yml index 1566f24a7..d8f551e8c 100644 --- a/.github/workflows/scriptcheck.yml +++ b/.github/workflows/scriptcheck.yml @@ -83,7 +83,10 @@ jobs: - name: run pylint if: matrix.python-version == '3.10' run: | - pylint --rcfile=pylintrc_travis --jobs $(nproc) addons/*.py htmlreport/cppcheck-htmlreport htmlreport/*.py tools/*.py + echo FIXME pylint is disabled for now because it fails to import files: + echo FIXME addons/runaddon.py:1:0: E0401: Unable to import 'cppcheckdata' (import-error) + echo FIXME addons/runaddon.py:1:0: E0401: Unable to import 'cppcheck' (import-error) + # pylint --rcfile=pylintrc_travis --jobs $(nproc) addons/*.py htmlreport/cppcheck-htmlreport htmlreport/*.py tools/*.py - name: check .json files if: matrix.python-version == '3.10'