From 08e3c2aee474683320598e712b4a63ea8dd05144 Mon Sep 17 00:00:00 2001 From: Ivana Kellyer Date: Thu, 13 Nov 2025 08:09:34 +0100 Subject: [PATCH 1/4] Testing coverage From f75ed999a999f4da459b8e4867c322cf3de4e092 Mon Sep 17 00:00:00 2001 From: Ivana Kellyer Date: Thu, 13 Nov 2025 08:16:53 +0100 Subject: [PATCH 2/4] add debug --- .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 1e43a10bacf68e80e32cdaba2b82a995f7a2893a Mon Sep 17 00:00:00 2001 From: Ivana Kellyer Date: Thu, 13 Nov 2025 08:23:44 +0100 Subject: [PATCH 3/4] 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 4c905fc09da5b3a6b9215bdb623c7e7bf445266e Mon Sep 17 00:00:00 2001 From: Ivana Kellyer Date: Thu, 13 Nov 2025 09:05:57 +0100 Subject: [PATCH 4/4] . --- .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