We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fafd351 commit bffdd97Copy full SHA for bffdd97
1 file changed
.github/workflows/test.yml
@@ -291,6 +291,9 @@ jobs:
291
with:
292
enable-cache: true
293
cache-dependency-glob: '**/pyproject.toml'
294
+ # Pin to 3.14 so ``coverage`` can parse source files that use
295
+ # PEP 758 syntax (parenthesis-free ``except E1, E2:``).
296
+ python-version: '3.14'
297
298
- uses: actions/download-artifact@v8
299
@@ -300,9 +303,7 @@ jobs:
300
303
- name: Require 100% Coverage
301
304
id: coverage
302
305
run: |
- # Pin to 3.14 so ``coverage`` can parse source files that use
- # PEP 758 syntax (parenthesis-free ``except E1, E2:``).
- uv tool install --python 3.14 'coverage[toml]'
306
+ uv tool install 'coverage[toml]'
307
308
coverage combine
309
coverage html --skip-covered --skip-empty
0 commit comments