Skip to content

Commit 1fb8459

Browse files
committed
fix(ci): install test dependencies
1 parent 2c234a9 commit 1fb8459

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/release.yaml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ jobs:
4646
shell: bash
4747
run: |
4848
set -e
49-
pip install pyargus --find-links dist --force-reinstall
49+
pip install pyargus[test] --find-links dist --force-reinstall
5050
pip install pytest
5151
cd pyargus && pytest
5252
- name: pytest
@@ -62,14 +62,14 @@ jobs:
6262
pip3 install -U pip pytest
6363
run: |
6464
set -e
65-
pip3 install pyargus --find-links dist --force-reinstall
65+
pip3 install pyargus[test] --find-links dist --force-reinstall
6666
cd pyargus && pytest
6767
6868
windows:
6969
runs-on: windows-latest
7070
strategy:
7171
matrix:
72-
target: [x64, x86]
72+
target: [x64]
7373
steps:
7474
- uses: actions/checkout@v3
7575
- uses: actions/setup-python@v4
@@ -92,7 +92,7 @@ jobs:
9292
shell: bash
9393
run: |
9494
set -e
95-
pip install pyargus --find-links dist --force-reinstall
95+
pip install pyargus[test] --find-links dist --force-reinstall
9696
pip install pytest
9797
cd pyargus && pytest
9898
@@ -122,7 +122,7 @@ jobs:
122122
shell: bash
123123
run: |
124124
set -e
125-
pip install pyargus --find-links dist --force-reinstall
125+
pip install pyargus[test] --find-links dist --force-reinstall
126126
pip install pytest
127127
cd pyargus && pytest
128128

0 commit comments

Comments
 (0)