Skip to content

Commit

Permalink
pytest dependecy fix
Browse files Browse the repository at this point in the history
  • Loading branch information
ErikKaum committed Aug 22, 2024
1 parent f10205e commit 91817ec
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions .github/workflows/python_ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,7 @@ jobs:
run: |
python3 -m venv .venv
source .venv/bin/activate
pip install outlines-core --find-links dist --force-reinstall
pip install pytest pytest-cov
pip install outlines-core[test] --find-links dist --force-reinstall
- name: Run tests
run: |
source .venv/bin/activate
Expand Down Expand Up @@ -142,8 +141,7 @@ jobs:
set -e
python3 -m venv .venv
source .venv/bin/activate
pip install outlines-core --find-links dist --force-reinstall
pip install pytest
pip install outlines-core[test] --find-links dist --force-reinstall
pytest
- name: pytest
if: ${{ !startsWith(matrix.platform.target, 'x86') && matrix.platform.target != 'ppc64' }}
Expand All @@ -159,7 +157,7 @@ jobs:
run: |
set -e
cd bindings/python
pip3 install outlines-core --find-links dist --force-reinstall
pip3 install outlines-core[test] --find-links dist --force-reinstall
pytest
# musllinux:
Expand Down

0 comments on commit 91817ec

Please sign in to comment.