Skip to content

Commit 3e5213c

Browse files
committed
Install deps separately for downloaded wheels
1 parent c6dcab8 commit 3e5213c

2 files changed

Lines changed: 6 additions & 4 deletions

File tree

.github/actions/test/action.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -76,9 +76,10 @@ runs:
7676
shell: bash
7777
working-directory: dist/
7878
run: |
79-
WHEEL_NAME=$(ls pyshp-*py3-none-any.whl)
8079
python -m pip install --upgrade pip
81-
python -m pip install $WHEEL_NAME --group test
80+
python -m pip install pytest
81+
WHEEL_NAME=$(ls pyshp-*py3-none-any.whl)
82+
python -m pip install $WHEEL_NAME
8283
8384
- name: Doctests
8485
shell: bash

.github/workflows/speed_test.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,9 +48,10 @@ jobs:
4848
shell: bash
4949
working-directory: dist/
5050
run: |
51-
WHEEL_NAME=$(ls pyshp-*py3-none-any.whl)
5251
python -m pip install --upgrade pip
53-
python -m pip install $WHEEL_NAME --group test
52+
python -m pip install pytest
53+
WHEEL_NAME=$(ls pyshp-*py3-none-any.whl)
54+
python -m pip install $WHEEL_NAME
5455
5556
- uses: actions/checkout@v6
5657
with:

0 commit comments

Comments
 (0)