From aec40c3158c723059a52427952f63c9e023469bd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 27 May 2024 18:38:56 +0000 Subject: [PATCH 1/2] Bump coverage from 7.5.1 to 7.5.2 Bumps [coverage](https://github.com/nedbat/coveragepy) from 7.5.1 to 7.5.2. - [Release notes](https://github.com/nedbat/coveragepy/releases) - [Changelog](https://github.com/nedbat/coveragepy/blob/master/CHANGES.rst) - [Commits](https://github.com/nedbat/coveragepy/compare/7.5.1...7.5.2) --- updated-dependencies: - dependency-name: coverage dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- requirements_test.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements_test.txt b/requirements_test.txt index e325377c..03f9e23a 100644 --- a/requirements_test.txt +++ b/requirements_test.txt @@ -1,7 +1,7 @@ ruff==0.4.5 black==24.4.2 build==1.2.1 -coverage==7.5.1 +coverage==7.5.2 pytest==8.2.1 pytest-cov==5.0.0 pytest-sugar==1.0.0 From 0958c1d36ed430be27085f72c97feae3297770ad Mon Sep 17 00:00:00 2001 From: Kevin Fronczak Date: Mon, 27 May 2024 20:15:18 -0400 Subject: [PATCH 2/2] Update coverage.yml --- .github/workflows/coverage.yml | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 4ffae839..66c9361e 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -35,8 +35,9 @@ jobs: - name: Codecov uses: codecov/codecov-action@v4 with: - token: ${{ secrets.CODECOV_TOKEN }} - flags: unittests - file: ./coverage.xml + fail_ci_if_error: true # optional (default = false) + files: ./coverage.xml + flags: unittests # optional name: blinkpy - fail_ci_if_error: true + token: ${{ secrets.CODECOV_TOKEN }} # required + verbose: true # optional (default = false)