Skip to content

Commit

Permalink
fix bug in github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
markparonyan committed May 15, 2024
1 parent 0857e1c commit 649a216
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,14 @@ jobs:
with:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
run: |
python -m pip install --upgrade pip
pip install poetry
cd backend/
poetry install
- name: Test with pytest
run: |
run: |
coverage run -m pytest -v -s
- name: Generate Coverage Report
run: |
run: |
coverage report -m

0 comments on commit 649a216

Please sign in to comment.