diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 57fc9cf..5666f28 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -27,7 +27,7 @@ jobs: - name: Install dependencies run: pip install -r requirements.txt && pip install -r requirements-dev.txt - name: Lint - run: pylint --recursive=yes --output-format=parseable --output=lintreport.txt . + run: pylint --recursive=yes --output-format=parseable --output=lintreport.txt . || pylint-exit $? - name: Unit Test run: | coverage run -m py.test -v --junitxml=testresults.xml diff --git a/requirements-dev.txt b/requirements-dev.txt index fcf0dd6..5783865 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,4 +1,5 @@ black coverage pylint +pylint-exit pytest