Skip to content

Commit ec0224d

Browse files
committed
fix(ci): actually install the test dependencies
1 parent 1fb8459 commit ec0224d

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

.github/workflows/release.yaml

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -46,8 +46,8 @@ jobs:
4646
shell: bash
4747
run: |
4848
set -e
49-
pip install pyargus[test] --find-links dist --force-reinstall
50-
pip install pytest
49+
pip install pyargus --find-links dist --force-reinstall
50+
pip install pytest pytest-cov hypothesis
5151
cd pyargus && pytest
5252
- name: pytest
5353
if: ${{ !startsWith(matrix.target, 'x86') && matrix.target != 'ppc64' }}
@@ -59,10 +59,10 @@ jobs:
5959
install: |
6060
apt-get update
6161
apt-get install -y --no-install-recommends python3 python3-pip
62-
pip3 install -U pip pytest
62+
pip3 install -U pip pytest pytest-cov hypothesis
6363
run: |
6464
set -e
65-
pip3 install pyargus[test] --find-links dist --force-reinstall
65+
pip3 install pyargus --find-links dist --force-reinstall
6666
cd pyargus && pytest
6767
6868
windows:
@@ -92,8 +92,8 @@ jobs:
9292
shell: bash
9393
run: |
9494
set -e
95-
pip install pyargus[test] --find-links dist --force-reinstall
96-
pip install pytest
95+
pip install pyargus --find-links dist --force-reinstall
96+
pip install pytest pytest-cov hypothesis
9797
cd pyargus && pytest
9898
9999
macos:
@@ -122,8 +122,8 @@ jobs:
122122
shell: bash
123123
run: |
124124
set -e
125-
pip install pyargus[test] --find-links dist --force-reinstall
126-
pip install pytest
125+
pip install pyargus --find-links dist --force-reinstall
126+
pip install pytest pytest-cov hypothesis
127127
cd pyargus && pytest
128128
129129
sdist:

0 commit comments

Comments
 (0)