does installing packages go faster with wheel?

This commit is contained in:
Jeff Epler 2022-06-27 08:02:59 -05:00
parent d27d3e3590
commit 0e254331b5
No known key found for this signature in database
GPG key ID: D5BF15AB975AB4DE
2 changed files with 6 additions and 2 deletions

View file

@ -26,7 +26,9 @@ jobs:
python-version: 3.7
- name: Install deps
run: python -mpip install -r requirements-dev.txt
run: |
python -mpip install wheel
python -mpip install -r requirements-dev.txt
- name: Test
run: make coverage

View file

@ -44,7 +44,9 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install deps
run: python -mpip install -r requirements-dev.txt
run: |
python -mpip install wheel
python -mpip install -r requirements-dev.txt
- name: Check stubs
if: (! startsWith(matrix.python-version, 'pypy-'))