From 7ef481d744c99fd061732db110636035c7a020ee Mon Sep 17 00:00:00 2001 From: Anders Kaseorg Date: Thu, 1 Feb 2024 17:28:15 -0800 Subject: [PATCH] ci: Disable coverage on Debian 12. This is probably a more effective workaround for https://github.com/python/cpython/issues/106092. Signed-off-by: Anders Kaseorg --- .github/workflows/zulip-ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/zulip-ci.yml b/.github/workflows/zulip-ci.yml index c2788c1c8f568..36cf4fce3a503 100644 --- a/.github/workflows/zulip-ci.yml +++ b/.github/workflows/zulip-ci.yml @@ -173,7 +173,7 @@ jobs: - name: Run backend tests run: | source tools/ci/activate-venv - ./tools/test-backend --coverage --xml-report --no-html-report --include-webhooks --include-transaction-tests --no-cov-cleanup --ban-console-output + ./tools/test-backend ${{ matrix.os != 'bookworm' && '--coverage' || '' }} --xml-report --no-html-report --include-webhooks --include-transaction-tests --no-cov-cleanup --ban-console-output - name: Run mypy run: |