diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 62699408a3..fbb0332af8 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -25,13 +25,36 @@ jobs: - name: Install the project dependencies run: | pip install poetry - poetry install -E "askar bbs" + poetry install --all-extras - name: Tests run: | - poetry run pytest 2>&1 | tee pytest.log + poetry run pytest --cov --cov-report lcov 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: Coveralls Parrallel + uses: coverallsapp/github-action@v2 + with: + parallel: true + flag-name: python-${{ inputs.python-version }} + code-coverage: + name: Generate code coverage report + runs-on: ${{ inputs.os }} + permissions: + pull-requests: write + needs: tests + if: ${{ always() }} + steps: + - name: Coveralls Finished + uses: coverallsapp/github-action@v2 + with: + parallel-finished: true + carryforward: "python-3.11" + - name: Comment on PR + uses: mshick/add-pr-comment@v2 + with: + message: | + **Hello PR** \ No newline at end of file diff --git a/.gitignore b/.gitignore index 67aa252fa2..0777c52c95 100644 --- a/.gitignore +++ b/.gitignore @@ -51,6 +51,7 @@ coverage.xml .hypothesis/ .pytest_cache/ test-reports/ +coverage.lcov # Translations *.mo