Skip to content

Commit

Permalink
fix(ci): correct poetry installation
Browse files Browse the repository at this point in the history
  • Loading branch information
spool committed Nov 29, 2023
1 parent cdcdf3e commit 93b255a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,9 @@ jobs:
uses: pre-commit/action@main

- name: Install with all components for testing
run: poetry install --with docs --with dev --with jupyter --with server
run: |
pip install poetry
poetry install --with=dev,docs,server
- name: Run pytest
run: poetry run pytest
Expand Down

0 comments on commit 93b255a

Please sign in to comment.