diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 828d38f..475b9fc 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -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