Update ci-python-poetry-with-docker.yml #14

Merged
luketainton merged 1 commits from luketainton-patch-1 into main 2024-11-21 22:24:59 +01:00

View File

@ -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