Skip to content

Commit 396f2cc

Browse files
committed
Try the coverage action with plain pip.
1 parent a3b9397 commit 396f2cc

File tree

1 file changed

+2
-4
lines changed

1 file changed

+2
-4
lines changed

.github/workflows/ci.yml

+2-4
Original file line numberDiff line numberDiff line change
@@ -77,16 +77,14 @@ jobs:
7777
- uses: actions/setup-python@v5
7878
with:
7979
python-version: "3.12"
80-
- uses: hynek/setup-cached-uv@v2
81-
- run: uv pip install --system --upgrade coverage[toml]
8280
- uses: actions/download-artifact@v4
8381
with:
8482
pattern: coverage-data-*
8583
merge-multiple: true
8684

87-
- name: Combine coverage & fail if it's <100%.
85+
- name: Combine coverage & fail under 100%
8886
run: |
89-
uv tool install 'coverage[toml]'
87+
python -Im pip install --upgrade "coverage[toml]"
9088
9189
coverage combine
9290
coverage html --skip-covered --skip-empty

0 commit comments

Comments
 (0)