Skip to content

Commit

Permalink
fix: try to make sure the CI isn't using the pip index/cache when ins…
Browse files Browse the repository at this point in the history
…talling in CI
  • Loading branch information
benbrandt committed Apr 4, 2024
1 parent cd4ff47 commit 17bc95a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ jobs:
shell: bash
run: |
set -e
pip install --find-links dist --force-reinstall semantic-text-splitter
pip install --no-index --find-links dist --force-reinstall semantic-text-splitter
pip install pytest tokenizers
pytest
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
shell: bash
run: |
set -e
pip install --find-links dist --force-reinstall semantic-text-splitter
pip install --no-index --find-links dist --force-reinstall semantic-text-splitter
pip install pytest tokenizers
pytest
Expand Down Expand Up @@ -132,7 +132,7 @@ jobs:
shell: bash
run: |
set -e
pip install --find-links dist --force-reinstall semantic-text-splitter
pip install --no-index --find-links dist --force-reinstall semantic-text-splitter
pip install pytest tokenizers
pytest
Expand Down

0 comments on commit 17bc95a

Please sign in to comment.