From d27480e151ad3eae2e83e1ccf0eb1a19c4bac7c9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 16 Jun 2025 04:06:23 +0000 Subject: [PATCH 01/14] chore(deps): bump coverage from 7.8.1 to 7.9.1 Bumps [coverage](https://github.com/nedbat/coveragepy) from 7.8.1 to 7.9.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.8.1...7.9.1) --- updated-dependencies: - dependency-name: coverage dependency-version: 7.9.1 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 c47e1133..f7fea477 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ attrs==25.3.0 -coverage==7.8.1 +coverage==7.9.1 iniconfig==2.1.0 packaging==25.0 pluggy==1.6.0 From b0a685d5f599b4f9a0817d1a7c7d885a3fd04241 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 19 Jun 2025 04:29:31 +0000 Subject: [PATCH 02/14] chore(deps): bump pytest from 8.3.5 to 8.4.1 Bumps [pytest](https://github.com/pytest-dev/pytest) from 8.3.5 to 8.4.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.3.5...8.4.1) --- updated-dependencies: - dependency-name: pytest dependency-version: 8.4.1 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 c47e1133..85c32b5c 100644 --- a/requirements.txt +++ b/requirements.txt @@ -5,6 +5,6 @@ packaging==25.0 pluggy==1.6.0 py==1.11.0 pyparsing==3.2.3 -pytest==8.3.5 +pytest==8.4.1 pytest-cov==6.1.0 tomli==2.2.1 From 411ed3b085b4c3a6dfe01a4f240c631e64b0cf41 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 1 Jul 2025 18:43:15 +0000 Subject: [PATCH 03/14] chore(deps): bump pytest-cov from 6.1.0 to 6.2.1 Bumps [pytest-cov](https://github.com/pytest-dev/pytest-cov) from 6.1.0 to 6.2.1. - [Changelog](https://github.com/pytest-dev/pytest-cov/blob/master/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest-cov/compare/v6.1.0...v6.2.1) --- updated-dependencies: - dependency-name: pytest-cov dependency-version: 6.2.1 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 66a15898..e3a6d253 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,5 +6,5 @@ pluggy==1.6.0 py==1.11.0 pyparsing==3.2.3 pytest==8.4.1 -pytest-cov==6.1.0 +pytest-cov==6.2.1 tomli==2.2.1 From 9bc59c38b077e7482b06e21346c91f107dd5b238 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 18 Aug 2025 07:09:41 +0000 Subject: [PATCH 04/14] chore(deps): bump coverage from 7.9.1 to 7.10.4 Bumps [coverage](https://github.com/nedbat/coveragepy) from 7.9.1 to 7.10.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.9.1...7.10.4) --- updated-dependencies: - dependency-name: coverage dependency-version: 7.10.4 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 e3a6d253..6fec1cfb 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ attrs==25.3.0 -coverage==7.9.1 +coverage==7.10.4 iniconfig==2.1.0 packaging==25.0 pluggy==1.6.0 From f18c659afd77bde74fa10d4c14eac4178414f005 Mon Sep 17 00:00:00 2001 From: Tom Hu Date: Thu, 4 Sep 2025 18:31:37 +0200 Subject: [PATCH 05/14] feat: ta --- .github/workflows/ci.yml | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 15abf468..76608502 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,12 @@ jobs: - name: Install dependencies run: pip install -r requirements.txt - name: Run tests and collect coverage - run: pytest --cov app + run: pytest --cov app --junitxml=junit.xml -o junit_family=legacy + - name: Upload test results to Codecov + if: ${{ !cancelled() }} + uses: codecov/test-results-action@v1 + with: + token: ${{ secrets.CODECOV_TOKEN }} - name: Upload coverage to Codecov (arg token) uses: codecov/codecov-action@main with: From cac0c560b88f0a2d6c7f33e3338133f3a315afed Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 9 Oct 2025 04:03:34 +0000 Subject: [PATCH 06/14] chore(deps): bump tomli from 2.2.1 to 2.3.0 Bumps [tomli](https://github.com/hukkin/tomli) from 2.2.1 to 2.3.0. - [Changelog](https://github.com/hukkin/tomli/blob/master/CHANGELOG.md) - [Commits](https://github.com/hukkin/tomli/compare/2.2.1...2.3.0) --- updated-dependencies: - dependency-name: tomli dependency-version: 2.3.0 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 6fec1cfb..c790ff11 100644 --- a/requirements.txt +++ b/requirements.txt @@ -7,4 +7,4 @@ py==1.11.0 pyparsing==3.2.3 pytest==8.4.1 pytest-cov==6.2.1 -tomli==2.2.1 +tomli==2.3.0 From c0ff6650ab88b1d41406d93f17f3e99c9480c45a Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Nov 2025 04:04:14 +0000 Subject: [PATCH 07/14] chore(deps): bump pytest from 8.4.1 to 9.0.0 Bumps [pytest](https://github.com/pytest-dev/pytest) from 8.4.1 to 9.0.0. - [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.4.1...9.0.0) --- updated-dependencies: - dependency-name: pytest dependency-version: 9.0.0 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 6fec1cfb..688f8f13 100644 --- a/requirements.txt +++ b/requirements.txt @@ -5,6 +5,6 @@ packaging==25.0 pluggy==1.6.0 py==1.11.0 pyparsing==3.2.3 -pytest==8.4.1 +pytest==9.0.0 pytest-cov==6.2.1 tomli==2.2.1 From 8867ba8c7b9216abd28e5da12ecb2bdfc6a45371 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 10 Nov 2025 04:04:19 +0000 Subject: [PATCH 08/14] chore(deps): bump coverage from 7.10.4 to 7.11.3 Bumps [coverage](https://github.com/coveragepy/coveragepy) from 7.10.4 to 7.11.3. - [Release notes](https://github.com/coveragepy/coveragepy/releases) - [Changelog](https://github.com/coveragepy/coveragepy/blob/main/CHANGES.rst) - [Commits](https://github.com/coveragepy/coveragepy/compare/7.10.4...7.11.3) --- updated-dependencies: - dependency-name: coverage dependency-version: 7.11.3 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 6fec1cfb..02e34207 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ attrs==25.3.0 -coverage==7.10.4 +coverage==7.11.3 iniconfig==2.1.0 packaging==25.0 pluggy==1.6.0 From 99f487b8fc0d4587e905fab011e1296b395c392d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 11 Nov 2025 21:18:01 +0000 Subject: [PATCH 09/14] chore(deps): bump iniconfig from 2.1.0 to 2.3.0 Bumps [iniconfig](https://github.com/pytest-dev/iniconfig) from 2.1.0 to 2.3.0. - [Release notes](https://github.com/pytest-dev/iniconfig/releases) - [Changelog](https://github.com/pytest-dev/iniconfig/blob/main/CHANGELOG) - [Commits](https://github.com/pytest-dev/iniconfig/compare/v2.1.0...v2.3.0) --- updated-dependencies: - dependency-name: iniconfig dependency-version: 2.3.0 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 4d642581..01d9cd34 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,6 +1,6 @@ attrs==25.3.0 coverage==7.11.3 -iniconfig==2.1.0 +iniconfig==2.3.0 packaging==25.0 pluggy==1.6.0 py==1.11.0 From e40704e69f582473598f580a6c02f2526db72f1c Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 11 Nov 2025 21:18:09 +0000 Subject: [PATCH 10/14] chore(deps): bump attrs from 25.3.0 to 25.4.0 Bumps [attrs](https://github.com/sponsors/hynek) from 25.3.0 to 25.4.0. - [Commits](https://github.com/sponsors/hynek/commits) --- updated-dependencies: - dependency-name: attrs dependency-version: 25.4.0 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 4d642581..98347469 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,4 +1,4 @@ -attrs==25.3.0 +attrs==25.4.0 coverage==7.11.3 iniconfig==2.1.0 packaging==25.0 From c048504e22e234aea6f77a28b9a35eaebeb0f27e Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 11 Nov 2025 21:18:13 +0000 Subject: [PATCH 11/14] chore(deps): bump pyparsing from 3.2.3 to 3.2.5 Bumps [pyparsing](https://github.com/pyparsing/pyparsing) from 3.2.3 to 3.2.5. - [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.2.3...3.2.5) --- updated-dependencies: - dependency-name: pyparsing dependency-version: 3.2.5 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 4d642581..2cfff7a4 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,7 +4,7 @@ iniconfig==2.1.0 packaging==25.0 pluggy==1.6.0 py==1.11.0 -pyparsing==3.2.3 +pyparsing==3.2.5 pytest==9.0.0 pytest-cov==6.2.1 tomli==2.3.0 From 0c4a95333ce47813f4ef8f7e627f0c89d3fa492f Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 11 Nov 2025 21:18:20 +0000 Subject: [PATCH 12/14] chore(deps): bump pytest-cov from 6.2.1 to 7.0.0 Bumps [pytest-cov](https://github.com/pytest-dev/pytest-cov) from 6.2.1 to 7.0.0. - [Changelog](https://github.com/pytest-dev/pytest-cov/blob/master/CHANGELOG.rst) - [Commits](https://github.com/pytest-dev/pytest-cov/compare/v6.2.1...v7.0.0) --- updated-dependencies: - dependency-name: pytest-cov dependency-version: 7.0.0 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 4d642581..ea44f61a 100644 --- a/requirements.txt +++ b/requirements.txt @@ -6,5 +6,5 @@ pluggy==1.6.0 py==1.11.0 pyparsing==3.2.3 pytest==9.0.0 -pytest-cov==6.2.1 +pytest-cov==7.0.0 tomli==2.3.0 From 388fdba9bc4382670cf6ff2e15b6817d04e1e70d Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Thu, 13 Nov 2025 04:03:17 +0000 Subject: [PATCH 13/14] chore(deps): bump pytest from 9.0.0 to 9.0.1 Bumps [pytest](https://github.com/pytest-dev/pytest) from 9.0.0 to 9.0.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/9.0.0...9.0.1) --- updated-dependencies: - dependency-name: pytest dependency-version: 9.0.1 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 85aa21a6..f8bfc8c8 100644 --- a/requirements.txt +++ b/requirements.txt @@ -5,6 +5,6 @@ packaging==25.0 pluggy==1.6.0 py==1.11.0 pyparsing==3.2.5 -pytest==9.0.0 +pytest==9.0.1 pytest-cov==7.0.0 tomli==2.3.0 From 0624aa422444a00733abd7e3d144d7361e800ebd Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 19 Nov 2025 04:03:23 +0000 Subject: [PATCH 14/14] chore(deps): bump coverage from 7.11.3 to 7.12.0 Bumps [coverage](https://github.com/coveragepy/coveragepy) from 7.11.3 to 7.12.0. - [Release notes](https://github.com/coveragepy/coveragepy/releases) - [Changelog](https://github.com/coveragepy/coveragepy/blob/main/CHANGES.rst) - [Commits](https://github.com/coveragepy/coveragepy/compare/7.11.3...7.12.0) --- updated-dependencies: - dependency-name: coverage dependency-version: 7.12.0 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 85aa21a6..87822d52 100644 --- a/requirements.txt +++ b/requirements.txt @@ -1,5 +1,5 @@ attrs==25.4.0 -coverage==7.11.3 +coverage==7.12.0 iniconfig==2.3.0 packaging==25.0 pluggy==1.6.0