From 9a93ee3e4df6b57b60fe6c097969296b81ed4630 Mon Sep 17 00:00:00 2001 From: Ivana Kellyer Date: Thu, 13 Nov 2025 08:12:09 +0100 Subject: [PATCH 1/6] test with coverage==7.11.0 --- tox.ini | 1 + 1 file changed, 1 insertion(+) diff --git a/tox.ini b/tox.ini index 4ebb232811..9e43e07395 100644 --- a/tox.ini +++ b/tox.ini @@ -318,6 +318,7 @@ deps = # for justification of the upper bound on pytest {py3.6,py3.7}-common: pytest<7.0.0 {py3.8,py3.9,py3.10,py3.11,py3.12,py3.13,py3.14,py3.14t}-common: pytest + {3.14,3.14t}-common: coverage==7.11.0 # === Gevent === {py3.6,py3.7,py3.8,py3.9,py3.10,py3.11}-gevent: gevent>=22.10.0, <22.11.0 From 1f46eada190d14949674c1b268b5651bf5d9ebc2 Mon Sep 17 00:00:00 2001 From: Ivana Kellyer Date: Thu, 13 Nov 2025 08:16:07 +0100 Subject: [PATCH 2/6] log debug info --- .github/workflows/test-integrations-common.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-integrations-common.yml b/.github/workflows/test-integrations-common.yml index 5ac65c327f..d9e0fddfb4 100644 --- a/.github/workflows/test-integrations-common.yml +++ b/.github/workflows/test-integrations-common.yml @@ -63,7 +63,7 @@ jobs: - name: Generate coverage XML if: ${{ !cancelled() && matrix.python-version != '3.6' }} run: | - coverage combine .coverage-sentry-* + coverage --debug=sys,core combine .coverage-sentry-* coverage xml - name: Upload coverage to Codecov if: ${{ !cancelled() }} From e4c5c149df474a88f23a408735a4ce9b7003ec6f Mon Sep 17 00:00:00 2001 From: Ivana Kellyer Date: Thu, 13 Nov 2025 08:23:44 +0100 Subject: [PATCH 3/6] switch arg order --- .github/workflows/test-integrations-common.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-integrations-common.yml b/.github/workflows/test-integrations-common.yml index d9e0fddfb4..8e0c75eda5 100644 --- a/.github/workflows/test-integrations-common.yml +++ b/.github/workflows/test-integrations-common.yml @@ -63,7 +63,7 @@ jobs: - name: Generate coverage XML if: ${{ !cancelled() && matrix.python-version != '3.6' }} run: | - coverage --debug=sys,core combine .coverage-sentry-* + coverage combine .coverage-sentry-* --debug=sys,core coverage xml - name: Upload coverage to Codecov if: ${{ !cancelled() }} From e7260d0ae3893a52b84536d5850b8fbd11929df5 Mon Sep 17 00:00:00 2001 From: Ivana Kellyer Date: Thu, 13 Nov 2025 09:05:57 +0100 Subject: [PATCH 4/6] . --- .github/workflows/test-integrations-common.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/test-integrations-common.yml b/.github/workflows/test-integrations-common.yml index 8e0c75eda5..22c613720a 100644 --- a/.github/workflows/test-integrations-common.yml +++ b/.github/workflows/test-integrations-common.yml @@ -63,8 +63,8 @@ jobs: - name: Generate coverage XML if: ${{ !cancelled() && matrix.python-version != '3.6' }} run: | - coverage combine .coverage-sentry-* --debug=sys,core - coverage xml + coverage combine .coverage-sentry-* + coverage xml --debug=sys,core - name: Upload coverage to Codecov if: ${{ !cancelled() }} uses: codecov/codecov-action@v5.5.1 From 16e8951d0a08f67aa09735645e3abebc7ee37d1d Mon Sep 17 00:00:00 2001 From: Ivana Kellyer Date: Thu, 13 Nov 2025 09:14:50 +0100 Subject: [PATCH 5/6] . --- .github/workflows/test-integrations-common.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-integrations-common.yml b/.github/workflows/test-integrations-common.yml index 22c613720a..4a86e1e21f 100644 --- a/.github/workflows/test-integrations-common.yml +++ b/.github/workflows/test-integrations-common.yml @@ -46,7 +46,7 @@ jobs: allow-prereleases: true - name: Setup Test Env run: | - pip install "coverage[toml]" tox + pip install "coverage[toml]==7.11.0" tox - name: Erase coverage run: | coverage erase From 2a2dc7f073911f9af6c49d60a00e2fd0d2ad6566 Mon Sep 17 00:00:00 2001 From: Ivana Kellyer Date: Thu, 13 Nov 2025 09:21:23 +0100 Subject: [PATCH 6/6] . --- tox.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tox.ini b/tox.ini index 9e43e07395..e57a55718c 100644 --- a/tox.ini +++ b/tox.ini @@ -318,7 +318,7 @@ deps = # for justification of the upper bound on pytest {py3.6,py3.7}-common: pytest<7.0.0 {py3.8,py3.9,py3.10,py3.11,py3.12,py3.13,py3.14,py3.14t}-common: pytest - {3.14,3.14t}-common: coverage==7.11.0 + {py3.14,py3.14t}-common: coverage==7.11.0 # === Gevent === {py3.6,py3.7,py3.8,py3.9,py3.10,py3.11}-gevent: gevent>=22.10.0, <22.11.0