From 1f261327e1f4153e462e4db7e8aa04da691ef6fd Mon Sep 17 00:00:00 2001 From: Michael Date: Sun, 3 Nov 2024 20:24:09 +0200 Subject: [PATCH] Update pylint.yml --- .github/workflows/pylint.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/pylint.yml b/.github/workflows/pylint.yml index 819948c1..2fab7701 100644 --- a/.github/workflows/pylint.yml +++ b/.github/workflows/pylint.yml @@ -105,10 +105,12 @@ jobs: mkdir -p ./reports pylint LaunchFile/ --output-format=json > ./reports/pylint-report.json || true pylint LaunchFile/ --output-format=text > ./reports/pylint-report.txt || true + continue-on-error: true - name: Run flake8 run: | flake8 LaunchFile/ --max-line-length=120 --statistics --tee --output-file=./reports/flake8-report.txt || true + continue-on-error: true - name: Check pylint score run: | @@ -123,11 +125,13 @@ jobs: run: | source venv/bin/activate mypy LaunchFile/ + continue-on-error: true - name: Run tests run: | source venv/bin/activate python -m unittest discover -s tests || true + continue-on-error: true - name: Upload lint results if: always()