Skip to content

Commit

Permalink
fix: install extras in workflows
Browse files Browse the repository at this point in the history
Signed-off-by: Avik Basu <avikbasu93@gmail.com>
  • Loading branch information
ab93 committed Oct 17, 2022
1 parent 8969e80 commit 702f3b4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Install dependencies
run: |
poetry env use ${{ matrix.python-version }}
poetry install --no-root
poetry install --no-root -E mlflow
- name: Test with pytest
run: make test
2 changes: 1 addition & 1 deletion .github/workflows/coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Install dependencies
run: |
poetry env use ${{ matrix.python-version }}
poetry install --no-root
poetry install --no-root -E mlflow
- name: Run Coverage
run: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- name: Install dependencies
run: |
poetry env use ${{ matrix.python-version }}
poetry install --no-root
poetry install --no-root -E mlflow
- name: Build dist
run: poetry build
Expand Down

0 comments on commit 702f3b4

Please sign in to comment.