From 50eea39ef4f8e4409190a934227b68da1361056a Mon Sep 17 00:00:00 2001 From: Ritwik G Date: Wed, 12 Feb 2025 19:39:01 +0530 Subject: [PATCH] removed pylint and also modified sonar properties --- .github/workflows/test.yml | 7 +------ sonar-project.properties | 2 -- 2 files changed, 1 insertion(+), 8 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 34e1697..6887ee6 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -27,12 +27,7 @@ jobs: - name: Install dependencies run: | python -m pip install --upgrade pip - pip install tox tox-gh-actions pylint - - - name: Run pylint - run: | - pylint helm_values_manager --output-format=text:pylint-report.txt,colorized - continue-on-error: true # Don't fail if pylint has warnings + pip install tox tox-gh-actions - name: Test with tox run: tox diff --git a/sonar-project.properties b/sonar-project.properties index 08e918c..e7ed5fb 100644 --- a/sonar-project.properties +++ b/sonar-project.properties @@ -5,7 +5,6 @@ sonar.organization=zipstack sonar.sources=helm_values_manager sonar.tests=tests sonar.python.version=3.9,3.10,3.11,3.12 -sonar.python.coverage.reportPaths=coverage.xml sonar.coverage.exclusions=tests/**,setup.py # Quality gate settings @@ -13,4 +12,3 @@ sonar.qualitygate.wait=true # Analysis settings sonar.sourceEncoding=UTF-8 -sonar.python.pylint.reportPaths=pylint-report.txt