From ac13a5e8a1ae086205e168700472bafc49ad1806 Mon Sep 17 00:00:00 2001 From: "renovate[bot]" <29139614+renovate[bot]@users.noreply.github.com> Date: Sat, 24 Sep 2022 15:38:34 +0000 Subject: [PATCH 1/2] Update dependency certifi to v2022.9.24 --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 9f46534..4d7ef61 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -certifi==2022.6.15 +certifi==2022.9.24 charset-normalizer==2.1.1 idna==3.3 requests==2.28.1 -- 2.47.2 From 9118b98c8968a496e0b31803ba1d30427d99b4d6 Mon Sep 17 00:00:00 2001 From: Luke Tainton Date: Sat, 1 Oct 2022 11:29:41 +0100 Subject: [PATCH 2/2] Add pylint-exit --- .github/workflows/ci.yml | 2 +- requirements-dev.txt | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 163ebdc..975e667 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -26,7 +26,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: Run test suite run: | coverage run -m py.test -v --junitxml=testresults.xml diff --git a/requirements-dev.txt b/requirements-dev.txt index df0ec7f..827ef5a 100644 --- a/requirements-dev.txt +++ b/requirements-dev.txt @@ -1,5 +1,6 @@ black coverage pylint +pylint-exit pytest requests-mock -- 2.47.2