Skip to content

Commit

Permalink
Added dev,llm groups to poetry install
Browse files Browse the repository at this point in the history
  • Loading branch information
slincoln-aiq committed Oct 10, 2024
1 parent cdd522f commit 2904677
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
python-version: 3.11
cache: poetry
- name: Install dependencies
run: poetry install
run: poetry install --with dev,llm
- name: Build packages
run: poetry build
- name: Configure Poetry
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ jobs:
run: |
[ "$(poetry version -s)" == "${GITHUB_REF#refs/tags/v}" ]
- name: Install dependencies
run: poetry install
run: poetry install --with dev,llm
- name: Run tests
run: poetry run pytest
- name: Build packages
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
python-version: ${{ matrix.python-version }}
cache: poetry
- name: Install dependencies
run: poetry install
run: poetry install --with dev,llm
- name: Run tests
run: poetry run pytest --cov=sigmaiq --cov-report term --cov-report xml:cov.xml -vv
- name: Store coverage for badge
Expand Down

0 comments on commit 2904677

Please sign in to comment.