Skip to content

Commit

Permalink
Added poetry to shell
Browse files Browse the repository at this point in the history
  • Loading branch information
mimisavage authored Oct 31, 2024
1 parent 83e8d02 commit 730ef7b
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -49,16 +49,19 @@ jobs:
working-directory: ./apps/data_handler
run: |
echo "PATH=$HOME/.local/bin:$PATH" >> $GITHUB_ENV
poetry shell
poetry run pytest
- name: Install pytest for Shared
- name: Install dependencies for Shared
working-directory: ./apps/shared
run: |
echo "PATH=$HOME/.local/bin:$PATH" >> $GITHUB_ENV
pip install pytest
poetry lock --no-update
poetry install
- name: Run Tests for Shared
working-directory: ./apps/shared
run: |
echo "PATH=$HOME/.local/bin:$PATH" >> $GITHUB_ENV
pytest .
poetry shell
poetry run pytest .

0 comments on commit 730ef7b

Please sign in to comment.