Skip to content

Commit 3b8cb2b

Browse files
authored
Don't install coverage, it's not needed (#8895)
1 parent 6bb0552 commit 3b8cb2b

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/ci.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ jobs:
105105
# pypy3-3.8 and pypy3-3.9 -- both of them show up as 7.3.11.
106106
key: ${{ matrix.PYTHON.VERSION }}-${{ steps.setup-python.outputs.python-version }}-${{ matrix.PYTHON.NOXSESSION }}-${{ env.OPENSSL_HASH }}
107107

108-
- run: python -m pip install -c ci-constraints-requirements.txt 'nox' coverage[toml]
108+
- run: python -m pip install -c ci-constraints-requirements.txt 'nox'
109109
- name: Create nox environment
110110
run: |
111111
nox -v --install-only
@@ -182,7 +182,7 @@ jobs:
182182
- run: |
183183
echo "OPENSSL_FORCE_FIPS_MODE=1" >> $GITHUB_ENV
184184
if: matrix.IMAGE.FIPS
185-
- run: /venv/bin/python -m pip install -c ci-constraints-requirements.txt 'nox' coverage
185+
- run: /venv/bin/python -m pip install -c ci-constraints-requirements.txt 'nox'
186186
- run: '/venv/bin/nox -v --install-only -s tests'
187187
env:
188188
RUSTUP_HOME: /root/.rustup
@@ -229,7 +229,7 @@ jobs:
229229
- name: Clone wycheproof
230230
timeout-minutes: 2
231231
uses: ./.github/actions/wycheproof
232-
- run: python -m pip install -c ci-constraints-requirements.txt 'nox' coverage[toml]
232+
- run: python -m pip install -c ci-constraints-requirements.txt 'nox'
233233
- name: Create nox environment
234234
run: nox -v --install-only -s tests
235235
env:
@@ -304,7 +304,7 @@ jobs:
304304
- name: Clone wycheproof
305305
timeout-minutes: 2
306306
uses: ./.github/actions/wycheproof
307-
- run: python -m pip install -c ci-constraints-requirements.txt 'nox' coverage[toml] cffi
307+
- run: python -m pip install -c ci-constraints-requirements.txt 'nox' cffi
308308
- name: Create nox environment
309309
run: nox -v --install-only -s tests
310310
env:
@@ -379,7 +379,7 @@ jobs:
379379
python-version: ${{ matrix.PYTHON.VERSION }}
380380
architecture: 'x64' # we force this right now so that it will install the universal2 on arm64
381381

382-
- run: python -m pip install -c ci-constraints-requirements.txt 'nox' coverage[toml]
382+
- run: python -m pip install -c ci-constraints-requirements.txt 'nox'
383383

384384
- name: Clone wycheproof
385385
timeout-minutes: 2
@@ -442,7 +442,7 @@ jobs:
442442
timeout-minutes: 2
443443
with:
444444
key: ${{ matrix.PYTHON.NOXSESSION }}-${{ matrix.WINDOWS.ARCH }}-${{ steps.setup-python.outputs.python-version }}
445-
- run: python -m pip install -c ci-constraints-requirements.txt "nox" coverage[toml]
445+
- run: python -m pip install -c ci-constraints-requirements.txt "nox"
446446

447447
- uses: dawidd6/action-download-artifact@246dbf436b23d7c49e21a7ab8204ca9ecd1fe615
448448
with:

0 commit comments

Comments
 (0)