From a2ca6022da1b80f0af4841b8c5b36438ceaced1a Mon Sep 17 00:00:00 2001 From: Luke Tainton Date: Thu, 21 Nov 2024 21:24:47 +0000 Subject: [PATCH] Update ci-python-poetry-with-docker.yml --- .github/workflows/ci-python-poetry-with-docker.yml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci-python-poetry-with-docker.yml b/.github/workflows/ci-python-poetry-with-docker.yml index 9c1d442..57a8e82 100644 --- a/.github/workflows/ci-python-poetry-with-docker.yml +++ b/.github/workflows/ci-python-poetry-with-docker.yml @@ -30,7 +30,9 @@ jobs: - name: Install dependencies run: poetry install - name: Lint - run: poetry run pylint --fail-under=8 --recursive=yes --output-format=parseable --output=lintreport.txt . + run: | + poetry run pylint --fail-under=8 --recursive=yes --output-format=parseable --output=lintreport.txt . + cat lintreport.txt - name: Unit Test run: | poetry run coverage run -m pytest -v --junitxml=testresults.xml