Skip to content

Commit

Permalink
CI: install test extras at correct point (#185)
Browse files Browse the repository at this point in the history
  • Loading branch information
jbrixon committed Aug 2, 2024
1 parent 0b2ebf0 commit e77d978
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/poetry.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:
if: startsWith(matrix.os, 'ubuntu')
- name: Install examples and test dependencies
run: |
poetry install --only main --extras "examples test"
poetry install --only main --extras examples
- name: Run examples (linux)
run: |
poetry run examples/run_all.sh -c
Expand All @@ -65,7 +65,7 @@ jobs:
poetry run python examples/number_partition.py
if: startsWith(matrix.os, 'windows')
- name: Install all dependencies
run: poetry install --sync
run: poetry install --sync --extras test
- name: Check version numbers consistency
run: poetry run poe version_check
if: startsWith(matrix.os, 'ubuntu')
Expand Down

0 comments on commit e77d978

Please sign in to comment.