Skip to content

Commit ec93d0c

Browse files
committed
fix(workflow): broken pytest
1 parent dafe6f0 commit ec93d0c

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/maturin.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ jobs:
6262
set -e
6363
python3 -m venv .venv
6464
source .venv/bin/activate
65-
pip install pyfaup-rs --find-links dist --force-reinstall
65+
pip install pyfaup-rs --no-index --find-links dist --force-reinstall
6666
pip install pytest
6767
cd python && pytest
6868
- name: pytest
@@ -78,7 +78,7 @@ jobs:
7878
pip3 install -U pip pytest
7979
run: |
8080
set -e
81-
pip3 install pyfaup-rs --find-links dist --force-reinstall
81+
pip3 install pyfaup-rs --no-index --find-links dist --force-reinstall
8282
cd python && pytest
8383
8484
musllinux:
@@ -139,7 +139,7 @@ jobs:
139139
python3 -m virtualenv .venv
140140
source .venv/bin/activate
141141
pip install pytest
142-
pip install pyfaup-rs --find-links dist --force-reinstall
142+
pip install pyfaup-rs --no-index --find-links dist --force-reinstall
143143
cd python && pytest
144144
145145
windows:
@@ -179,7 +179,7 @@ jobs:
179179
set -e
180180
python3 -m venv .venv
181181
source .venv/Scripts/activate
182-
pip install pyfaup-rs --find-links dist --force-reinstall
182+
pip install pyfaup-rs --no-index --find-links dist --force-reinstall
183183
pip install pytest
184184
cd python && pytest
185185
@@ -213,7 +213,7 @@ jobs:
213213
set -e
214214
python3 -m venv .venv
215215
source .venv/bin/activate
216-
pip install pyfaup-rs --find-links dist --force-reinstall
216+
pip install pyfaup-rs --no-index --find-links dist --force-reinstall
217217
pip install pytest
218218
cd python && pytest
219219

0 commit comments

Comments
 (0)