Skip to content

Commit

Permalink
ci: Force installing from built wheel instead of from PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
ubolonton committed Feb 2, 2024
1 parent 106bbaa commit 8dd925a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ jobs:
shell: bash
run: |
set -e
pip install denopy --find-links dist --force-reinstall
pip install denopy --find-links dist --no-index --force-reinstall
pip install pytest
pytest
- name: pytest
Expand All @@ -65,7 +65,7 @@ jobs:
pip3 install -U pip pytest
run: |
set -e
pip3 install denopy --find-links dist --force-reinstall
pip3 install denopy --find-links dist --no-index --force-reinstall
pytest
windows:
Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
shell: bash
run: |
set -e
pip install denopy --find-links dist --force-reinstall
pip install denopy --find-links dist --no-index --force-reinstall
pip install pytest
pytest
Expand Down Expand Up @@ -125,7 +125,7 @@ jobs:
shell: bash
run: |
set -e
pip install denopy --find-links dist --force-reinstall
pip install denopy --find-links dist --no-index --force-reinstall
pip install pytest
pytest
Expand Down

0 comments on commit 8dd925a

Please sign in to comment.