From 6d668870f28e521327800d43a6cc9125dc502061 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 12 Jul 2024 04:44:56 +0000 Subject: [PATCH 01/28] chore(deps): bump coverage from 7.5.4 to 7.6.0 Bumps [coverage](https://github.com/nedbat/coveragepy) from 7.5.4 to 7.6.0. - [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.4...7.6.0) --- updated-dependencies: - dependency-name: coverage dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 0e8a292d..dda07947 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ attrs==23.2.0 -coverage==7.5.4 +coverage==7.6.0 iniconfig==2.0.0 packaging==24.1 pluggy==1.5.0 From 6cc5e391330d2f9754aa7a92397d4894253df6c0 Mon Sep 17 00:00:00 2001 From: Tom Hu Date: Mon, 15 Jul 2024 22:41:37 +0200 Subject: [PATCH 02/28] fix: whitespace --- app/calculator.py | 1 + 1 file changed, 1 insertion(+) diff --git a/app/calculator.py b/app/calculator.py index 8a976b25..4f380e8e 100644 --- a/app/calculator.py +++ b/app/calculator.py @@ -13,3 +13,4 @@ def divide(x, y): if y == 0: return 'Cannot divide by 0' return x * 1.0 / y + From 3a596162e4bf1610c363cc5455c27da9169c84c5 Mon Sep 17 00:00:00 2001 From: Tom Hu Date: Mon, 15 Jul 2024 22:46:26 +0200 Subject: [PATCH 03/28] fix: see if it works on CI --- .github/workflows/ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5e42465a..0b1d0cbc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,6 +16,13 @@ jobs: run: pip install -r requirements.txt - name: Run tests and collect coverage run: pytest --cov app ${{ env.CODECOV_ATS_TESTS }} + - name: Run upload + run: | + curl -Os https://cli.codecov.io/latest/linux/codecov + chmod +x codecov + ./codecov -v create-commit -t ${{ secrets.CODECOV_TOKEN }} + ./codecov -v create-report -t ${{ secrets.CODECOV_TOKEN }} + - name: Upload coverage to Codecov uses: codecov/codecov-action@v4 with: From 1706a462aadd5052b7fd4e93db7d39042b1f5ece Mon Sep 17 00:00:00 2001 From: Tom Hu Date: Tue, 16 Jul 2024 22:49:46 +0200 Subject: [PATCH 04/28] fix: force token --- .github/workflows/ci.yml | 7 ------- codecov.yml | 3 +++ 2 files changed, 3 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0b1d0cbc..5e42465a 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -16,13 +16,6 @@ jobs: run: pip install -r requirements.txt - name: Run tests and collect coverage run: pytest --cov app ${{ env.CODECOV_ATS_TESTS }} - - name: Run upload - run: | - curl -Os https://cli.codecov.io/latest/linux/codecov - chmod +x codecov - ./codecov -v create-commit -t ${{ secrets.CODECOV_TOKEN }} - ./codecov -v create-report -t ${{ secrets.CODECOV_TOKEN }} - - name: Upload coverage to Codecov uses: codecov/codecov-action@v4 with: diff --git a/codecov.yml b/codecov.yml index 1ed5513f..f4542563 100644 --- a/codecov.yml +++ b/codecov.yml @@ -1,3 +1,6 @@ +codecov: + token: 8bc7e3d2-552d-4b27-aa90-64b13fd7311c + flag_management: individual_flags: - name: smart-tests From 51e61191dd81d9898995a153d4a2531648498167 Mon Sep 17 00:00:00 2001 From: Tom Hu <88201630+thomasrockhu-codecov@users.noreply.github.com> Date: Wed, 17 Jul 2024 19:13:26 +0200 Subject: [PATCH 05/28] Update codecov.yml Roll the token --- codecov.yml | 3 --- 1 file changed, 3 deletions(-) diff --git a/codecov.yml b/codecov.yml index f4542563..1ed5513f 100644 --- a/codecov.yml +++ b/codecov.yml @@ -1,6 +1,3 @@ -codecov: - token: 8bc7e3d2-552d-4b27-aa90-64b13fd7311c - flag_management: individual_flags: - name: smart-tests From a6a7cf2a0e18b2f786b77ee43f3ebff41c43f2f1 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jul 2024 04:24:31 +0000 Subject: [PATCH 06/28] chore(deps): bump pytest from 8.2.2 to 8.3.1 Bumps [pytest](https://github.com/pytest-dev/pytest) from 8.2.2 to 8.3.1. - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest/compare/8.2.2...8.3.1) --- updated-dependencies: - dependency-name: pytest dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index dda07947..80d8a45c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -5,6 +5,6 @@ packaging==24.1 pluggy==1.5.0 py==1.11.0 pyparsing==3.1.2 -pytest==8.2.2 +pytest==8.3.1 pytest-cov==5.0.0 tomli==2.0.1 From db945f2502c0c004333aceadfbb725367af386a8 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Fri, 26 Jul 2024 04:09:45 +0000 Subject: [PATCH 07/28] chore(deps): bump pytest from 8.3.1 to 8.3.2 Bumps [pytest](https://github.com/pytest-dev/pytest) from 8.3.1 to 8.3.2. - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest/compare/8.3.1...8.3.2) --- updated-dependencies: - dependency-name: pytest dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 80d8a45c..11f2bb02 100644 --- a/requirements.txt +++ b/requirements.txt @@ -5,6 +5,6 @@ packaging==24.1 pluggy==1.5.0 py==1.11.0 pyparsing==3.1.2 -pytest==8.3.1 +pytest==8.3.2 pytest-cov==5.0.0 tomli==2.0.1 From 27a3aab2aa15292c167f2616d895cf62dcf92fb5 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Aug 2024 04:46:56 +0000 Subject: [PATCH 08/28] chore(deps): bump attrs from 23.2.0 to 24.1.0 Bumps [attrs](https://github.com/sponsors/hynek) from 23.2.0 to 24.1.0. - [Commits](https://github.com/sponsors/hynek/commits) --- updated-dependencies: - dependency-name: attrs dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 11f2bb02..707e8750 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -attrs==23.2.0 +attrs==24.1.0 coverage==7.6.0 iniconfig==2.0.0 packaging==24.1 From 3a4f7c207ad0ec191c01dce987218761d4b7687f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 5 Aug 2024 21:51:55 +0000 Subject: [PATCH 09/28] chore(deps): bump coverage from 7.6.0 to 7.6.1 Bumps [coverage](https://github.com/nedbat/coveragepy) from 7.6.0 to 7.6.1. - [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.6.0...7.6.1) --- updated-dependencies: - dependency-name: coverage dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 707e8750..f9a9ab8e 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ attrs==24.1.0 -coverage==7.6.0 +coverage==7.6.1 iniconfig==2.0.0 packaging==24.1 pluggy==1.5.0 From 8a390f45dc504b2c4f055db97f186d851905731e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 7 Aug 2024 04:20:28 +0000 Subject: [PATCH 10/28] chore(deps): bump attrs from 24.1.0 to 24.2.0 Bumps [attrs](https://github.com/sponsors/hynek) from 24.1.0 to 24.2.0. - [Commits](https://github.com/sponsors/hynek/commits) --- updated-dependencies: - dependency-name: attrs dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index f9a9ab8e..28e9b19a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -attrs==24.1.0 +attrs==24.2.0 coverage==7.6.1 iniconfig==2.0.0 packaging==24.1 From 18112dfd7e1c6cce06c9052febb5df9d52175ec6 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 26 Aug 2024 04:04:55 +0000 Subject: [PATCH 11/28] chore(deps): bump pyparsing from 3.1.2 to 3.1.4 Bumps [pyparsing](https://github.com/pyparsing/pyparsing) from 3.1.2 to 3.1.4. - [Release notes](https://github.com/pyparsing/pyparsing/releases) - [Changelog](https://github.com/pyparsing/pyparsing/blob/master/CHANGES) - [Commits](https://github.com/pyparsing/pyparsing/compare/pyparsing_3.1.2...3.1.4) --- updated-dependencies: - dependency-name: pyparsing dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 28e9b19a..718e00d0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,7 +4,7 @@ iniconfig==2.0.0 packaging==24.1 pluggy==1.5.0 py==1.11.0 -pyparsing==3.1.2 +pyparsing==3.1.4 pytest==8.3.2 pytest-cov==5.0.0 tomli==2.0.1 From 7ec34968807f8805b2a3b5fdd029ea671d82ebbf Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 11 Sep 2024 04:53:43 +0000 Subject: [PATCH 12/28] chore(deps): bump pytest from 8.3.2 to 8.3.3 Bumps [pytest](https://github.com/pytest-dev/pytest) from 8.3.2 to 8.3.3. - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest/compare/8.3.2...8.3.3) --- updated-dependencies: - dependency-name: pytest dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 718e00d0..e78524b0 100644 --- a/requirements.txt +++ b/requirements.txt @@ -5,6 +5,6 @@ packaging==24.1 pluggy==1.5.0 py==1.11.0 pyparsing==3.1.4 -pytest==8.3.2 +pytest==8.3.3 pytest-cov==5.0.0 tomli==2.0.1 From a973cf073ec609253bf3290df98c837c82061217 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 3 Oct 2024 04:11:02 +0000 Subject: [PATCH 13/28] chore(deps): bump tomli from 2.0.1 to 2.0.2 Bumps [tomli](https://github.com/hukkin/tomli) from 2.0.1 to 2.0.2. - [Changelog](https://github.com/hukkin/tomli/blob/master/CHANGELOG.md) - [Commits](https://github.com/hukkin/tomli/compare/2.0.1...2.0.2) --- updated-dependencies: - dependency-name: tomli dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index e78524b0..94419b2a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,4 +7,4 @@ py==1.11.0 pyparsing==3.1.4 pytest==8.3.3 pytest-cov==5.0.0 -tomli==2.0.1 +tomli==2.0.2 From e15e39ad9e9f91afb708a94d0e9ed341281dfd26 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 10 Oct 2024 04:20:50 +0000 Subject: [PATCH 14/28] chore(deps): bump coverage from 7.6.1 to 7.6.2 Bumps [coverage](https://github.com/nedbat/coveragepy) from 7.6.1 to 7.6.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.6.1...7.6.2) --- updated-dependencies: - dependency-name: coverage dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 94419b2a..8b864fdb 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ attrs==24.2.0 -coverage==7.6.1 +coverage==7.6.2 iniconfig==2.0.0 packaging==24.1 pluggy==1.5.0 From 1a0bfff31870d0a83c03812db07fcf32f91ce702 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 14 Oct 2024 04:08:41 +0000 Subject: [PATCH 15/28] chore(deps): bump pyparsing from 3.1.4 to 3.2.0 Bumps [pyparsing](https://github.com/pyparsing/pyparsing) from 3.1.4 to 3.2.0. - [Release notes](https://github.com/pyparsing/pyparsing/releases) - [Changelog](https://github.com/pyparsing/pyparsing/blob/master/CHANGES) - [Commits](https://github.com/pyparsing/pyparsing/compare/3.1.4...3.2.0) --- updated-dependencies: - dependency-name: pyparsing dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 8b864fdb..82b5de20 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,7 +4,7 @@ iniconfig==2.0.0 packaging==24.1 pluggy==1.5.0 py==1.11.0 -pyparsing==3.1.4 +pyparsing==3.2.0 pytest==8.3.3 pytest-cov==5.0.0 tomli==2.0.2 From 4a4c4025fcd90b1ba2866ea495091ad53e37df14 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 14 Oct 2024 04:08:48 +0000 Subject: [PATCH 16/28] chore(deps): bump coverage from 7.6.2 to 7.6.3 Bumps [coverage](https://github.com/nedbat/coveragepy) from 7.6.2 to 7.6.3. - [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.6.2...7.6.3) --- updated-dependencies: - dependency-name: coverage dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 8b864fdb..44a5c817 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ attrs==24.2.0 -coverage==7.6.2 +coverage==7.6.3 iniconfig==2.0.0 packaging==24.1 pluggy==1.5.0 From e7d041d9c822d7f26a1585c8145c04603239d0d4 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 21 Oct 2024 04:21:18 +0000 Subject: [PATCH 17/28] chore(deps): bump coverage from 7.6.3 to 7.6.4 Bumps [coverage](https://github.com/nedbat/coveragepy) from 7.6.3 to 7.6.4. - [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.6.3...7.6.4) --- updated-dependencies: - dependency-name: coverage dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 9ea13fce..3bf08776 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ attrs==24.2.0 -coverage==7.6.3 +coverage==7.6.4 iniconfig==2.0.0 packaging==24.1 pluggy==1.5.0 From 487098e3e104940011cbb7d870111e7939adf276 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 30 Oct 2024 04:30:13 +0000 Subject: [PATCH 18/28] chore(deps): bump pytest-cov from 5.0.0 to 6.0.0 Bumps [pytest-cov](https://github.com/pytest-dev/pytest-cov) from 5.0.0 to 6.0.0. - [Changelog](https://github.com/pytest-dev/pytest-cov/blob/master/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest-cov/compare/v5.0.0...v6.0.0) --- updated-dependencies: - dependency-name: pytest-cov dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 3bf08776..37f3d937 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,5 +6,5 @@ pluggy==1.5.0 py==1.11.0 pyparsing==3.2.0 pytest==8.3.3 -pytest-cov==5.0.0 +pytest-cov==6.0.0 tomli==2.0.2 From d1e010b702ac3e11f321a0a122bc100fab427e9f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 11 Nov 2024 04:15:09 +0000 Subject: [PATCH 19/28] chore(deps): bump packaging from 24.1 to 24.2 Bumps [packaging](https://github.com/pypa/packaging) from 24.1 to 24.2. - [Release notes](https://github.com/pypa/packaging/releases) - [Changelog](https://github.com/pypa/packaging/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pypa/packaging/compare/24.1...24.2) --- updated-dependencies: - dependency-name: packaging dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 37f3d937..cf23d66b 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,7 +1,7 @@ attrs==24.2.0 coverage==7.6.4 iniconfig==2.0.0 -packaging==24.1 +packaging==24.2 pluggy==1.5.0 py==1.11.0 pyparsing==3.2.0 From c6f4f90e021eec2444408200c4d9865231679f1c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 12 Nov 2024 04:32:01 +0000 Subject: [PATCH 20/28] chore(deps): bump tomli from 2.0.2 to 2.1.0 Bumps [tomli](https://github.com/hukkin/tomli) from 2.0.2 to 2.1.0. - [Changelog](https://github.com/hukkin/tomli/blob/master/CHANGELOG.md) - [Commits](https://github.com/hukkin/tomli/compare/2.0.2...2.1.0) --- updated-dependencies: - dependency-name: tomli dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index cf23d66b..5fb03935 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,4 +7,4 @@ py==1.11.0 pyparsing==3.2.0 pytest==8.3.3 pytest-cov==6.0.0 -tomli==2.0.2 +tomli==2.1.0 From 314d8f090ce1e79e9844bf1b57b331cb6875b72a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Nov 2024 04:37:01 +0000 Subject: [PATCH 21/28] chore(deps): bump coverage from 7.6.4 to 7.6.7 Bumps [coverage](https://github.com/nedbat/coveragepy) from 7.6.4 to 7.6.7. - [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.6.4...7.6.7) --- updated-dependencies: - dependency-name: coverage dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 5fb03935..ab9f8062 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ attrs==24.2.0 -coverage==7.6.4 +coverage==7.6.7 iniconfig==2.0.0 packaging==24.2 pluggy==1.5.0 From f777754d808c966cd77488042aaada5a7879805a Mon Sep 17 00:00:00 2001 From: Tom Hu <88201630+thomasrockhu-codecov@users.noreply.github.com> Date: Wed, 20 Nov 2024 10:12:31 -0500 Subject: [PATCH 22/28] Update ci.yml --- .github/workflows/ci.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 5e42465a..6ce548c5 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,8 +6,6 @@ jobs: steps: - name: Checkout uses: actions/checkout@v4 - with: - fetch-depth: 0 - name: Set up Python 3.10 uses: actions/setup-python@v4 with: @@ -15,10 +13,9 @@ jobs: - name: Install dependencies run: pip install -r requirements.txt - name: Run tests and collect coverage - run: pytest --cov app ${{ env.CODECOV_ATS_TESTS }} + run: pytest --cov app - name: Upload coverage to Codecov - uses: codecov/codecov-action@v4 + uses: codecov/codecov-action@v5 with: verbose: true - env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} + use_oidc: true From 6ff815471f5c0c1296c0c7d57dff1f8e19c77913 Mon Sep 17 00:00:00 2001 From: Tom Hu <88201630+thomasrockhu-codecov@users.noreply.github.com> Date: Wed, 20 Nov 2024 10:17:12 -0500 Subject: [PATCH 23/28] Update .github/workflows/ci.yml --- .github/workflows/ci.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6ce548c5..94d3cc6e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,4 +18,5 @@ jobs: uses: codecov/codecov-action@v5 with: verbose: true - use_oidc: true + env: + CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} From 7a8902f1e487e7ce9dd84468cbe2586c44950fa9 Mon Sep 17 00:00:00 2001 From: Tom Hu <88201630+thomasrockhu-codecov@users.noreply.github.com> Date: Wed, 20 Nov 2024 10:17:29 -0500 Subject: [PATCH 24/28] Update .github/workflows/ci.yml --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 94d3cc6e..22127a26 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,5 +18,5 @@ jobs: uses: codecov/codecov-action@v5 with: verbose: true - env: + env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} From fe33c78e94f45aa14d09a71ac7a69703caaa08c4 Mon Sep 17 00:00:00 2001 From: Tom Hu <88201630+thomasrockhu-codecov@users.noreply.github.com> Date: Wed, 20 Nov 2024 10:17:42 -0500 Subject: [PATCH 25/28] Update .github/workflows/ci.yml --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 22127a26..9e13158c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,5 +18,5 @@ jobs: uses: codecov/codecov-action@v5 with: verbose: true - env: + env: CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} From 3a1da30b31bc68c7c5118a28f1e2e34c3b6a3f9e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 25 Nov 2024 04:39:47 +0000 Subject: [PATCH 26/28] chore(deps): bump coverage from 7.6.7 to 7.6.8 Bumps [coverage](https://github.com/nedbat/coveragepy) from 7.6.7 to 7.6.8. - [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.6.7...7.6.8) --- updated-dependencies: - dependency-name: coverage dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index ab9f8062..3e704cf5 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ attrs==24.2.0 -coverage==7.6.7 +coverage==7.6.8 iniconfig==2.0.0 packaging==24.2 pluggy==1.5.0 From 57c0214a9b1522214e4daf05ce971f8d86b82650 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 2 Dec 2024 04:43:54 +0000 Subject: [PATCH 27/28] chore(deps): bump pytest from 8.3.3 to 8.3.4 Bumps [pytest](https://github.com/pytest-dev/pytest) from 8.3.3 to 8.3.4. - [Release notes](https://github.com/pytest-dev/pytest/releases) - [Changelog](https://github.com/pytest-dev/pytest/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest/compare/8.3.3...8.3.4) --- updated-dependencies: - dependency-name: pytest dependency-type: direct:production update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index ab9f8062..4f412b95 100644 --- a/requirements.txt +++ b/requirements.txt @@ -5,6 +5,6 @@ packaging==24.2 pluggy==1.5.0 py==1.11.0 pyparsing==3.2.0 -pytest==8.3.3 +pytest==8.3.4 pytest-cov==6.0.0 tomli==2.1.0 From ace1da37d37b49704b4a8ae5a7ff4288ed6aaea7 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 4 Dec 2024 02:03:38 +0000 Subject: [PATCH 28/28] chore(deps): bump tomli from 2.1.0 to 2.2.1 Bumps [tomli](https://github.com/hukkin/tomli) from 2.1.0 to 2.2.1. - [Changelog](https://github.com/hukkin/tomli/blob/master/CHANGELOG.md) - [Commits](https://github.com/hukkin/tomli/compare/2.1.0...2.2.1) --- updated-dependencies: - dependency-name: tomli dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- requirements.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/requirements.txt b/requirements.txt index 4f412b95..69774423 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,4 +7,4 @@ py==1.11.0 pyparsing==3.2.0 pytest==8.3.4 pytest-cov==6.0.0 -tomli==2.1.0 +tomli==2.2.1