Skip to content

Commit

Permalink
using poetry instead of pip in actions
Browse files Browse the repository at this point in the history
  • Loading branch information
mrtedn21 committed Nov 13, 2023
1 parent 30e075e commit db55918
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/github-actions-demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,10 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install sqlalchemy asyncpg uvloop alembic psycopg2 marshmallow marshmallow-jsonschema dacite marshmallow-enum pytest pytest-asyncio
python -m pip install poetry
python -m poetry install
- name: Run pytest
run: |
PYTHONPATH=$(pwd)
export PYTHONPATH
pytest
poetry run pytest

0 comments on commit db55918

Please sign in to comment.