From 79f080c28cbee194bc59f8e1cfe98a9c90260a49 Mon Sep 17 00:00:00 2001 From: Ran Benita Date: Thu, 20 Nov 2025 17:28:25 +0200 Subject: [PATCH] ci: restore full windows coverage Since 01dce85a89eb0b3e881303784267f14b94d9691f, we don't have a CI job on windows with coverage enabled which runs the full test suite. The unittest/twisted ones only run `test_unittest.py`. Enable coverage for one of the full jobs. --- .github/workflows/test.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 443a1723a0c..de40c8a10e2 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -139,6 +139,7 @@ jobs: python: "3.14" os: windows-latest tox_env: "py314" + use_coverage: true # Use separate jobs for different unittest flavors (twisted, asynctest) to ensure proper coverage. - name: "ubuntu-py310-unittest-asynctest"