diff --git a/.github/workflows/ci-python-poetry-with-docker.yml b/.github/workflows/ci-python-poetry-with-docker.yml index 32f5123..9c1d442 100644 --- a/.github/workflows/ci-python-poetry-with-docker.yml +++ b/.github/workflows/ci-python-poetry-with-docker.yml @@ -30,7 +30,7 @@ jobs: - name: Install dependencies run: poetry install - name: Lint - run: poetry run pylint --recursive=yes --output-format=parseable --output=lintreport.txt . || pylint-exit $? + run: poetry run pylint --fail-under=8 --recursive=yes --output-format=parseable --output=lintreport.txt . - name: Unit Test run: | poetry run coverage run -m pytest -v --junitxml=testresults.xml