Skip to content

Commit 10e09c0

Browse files
committed
fix(ci): try to make pytest actually detect argus
1 parent ec0224d commit 10e09c0

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

.github/workflows/release.yaml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ jobs:
4747
run: |
4848
set -e
4949
pip install pyargus --find-links dist --force-reinstall
50-
pip install pytest pytest-cov hypothesis
50+
pip install ./pyargus[test]
5151
cd pyargus && pytest
5252
- name: pytest
5353
if: ${{ !startsWith(matrix.target, 'x86') && matrix.target != 'ppc64' }}
@@ -62,6 +62,7 @@ jobs:
6262
pip3 install -U pip pytest pytest-cov hypothesis
6363
run: |
6464
set -e
65+
pip3 install ./pyargus[test]
6566
pip3 install pyargus --find-links dist --force-reinstall
6667
cd pyargus && pytest
6768
@@ -92,8 +93,8 @@ jobs:
9293
shell: bash
9394
run: |
9495
set -e
96+
pip install ./pyargus[test]
9597
pip install pyargus --find-links dist --force-reinstall
96-
pip install pytest pytest-cov hypothesis
9798
cd pyargus && pytest
9899
99100
macos:
@@ -122,8 +123,8 @@ jobs:
122123
shell: bash
123124
run: |
124125
set -e
126+
pip install ./pyargus[test]
125127
pip install pyargus --find-links dist --force-reinstall
126-
pip install pytest pytest-cov hypothesis
127128
cd pyargus && pytest
128129
129130
sdist:

0 commit comments

Comments
 (0)