Skip to content

Commit

Permalink
Merge pull request #7 from jamshale/codecov
Browse files Browse the repository at this point in the history
WIP
  • Loading branch information
jamshale authored May 14, 2024
2 parents f37bc91 + 88c4468 commit bfe7852
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,14 @@ jobs:
poetry install -E "askar bbs"
- name: Tests
run: |
poetry run pytest 2>&1 | tee pytest.log
poetry run pytest --cov 2>&1 | tee pytest.log
PYTEST_EXIT_CODE=${PIPESTATUS[0]}
if grep -Eq "RuntimeWarning: coroutine .* was never awaited" pytest.log; then
echo "Failure: Detected unawaited coroutine warning in pytest output."
exit 1
fi
exit $PYTEST_EXIT_CODE
- name: Upload coverage reports to Codecov
uses: codecov/[email protected]
with:
token: ${{ secrets.CODECOV_TOKEN }}

0 comments on commit bfe7852

Please sign in to comment.