From a393b4c3a2736c56524c0d6389205467ec282e4a Mon Sep 17 00:00:00 2001 From: Etienne Wodey Date: Mon, 11 Sep 2023 22:03:21 +0200 Subject: [PATCH] workflows: disable coverage report comment --- .github/workflows/poetry.yml | 24 ++++++++++++------------ 1 file changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/poetry.yml b/.github/workflows/poetry.yml index 1f82050..8b49606 100644 --- a/.github/workflows/poetry.yml +++ b/.github/workflows/poetry.yml @@ -64,15 +64,15 @@ jobs: path: htmlcov/ - name: Generate XML coverage report run: poetry run coverage xml -o coverage.xml - - name: Read global coverage target - id: coverage-target - run: echo "fail-under=$(poetry run python scripts/read-target-coverage.py)" >> $GITHUB_OUTPUT - - name: Post coverage comment - if: ${{ github.event_name == 'pull_request' }} - uses: orgoro/coverage@v3 - with: - coverageFile: coverage.xml - token: ${{ secrets.GITHUB_TOKEN }} - thresholdAll: ${{ steps.coverage-target.outputs.fail-under }} - thresholdNew: 0 - thresholdModified: 0 + # - name: Read global coverage target + # id: coverage-target + # run: echo "fail-under=$(poetry run python scripts/read-target-coverage.py)" >> $GITHUB_OUTPUT + # - name: Post coverage comment + # if: ${{ github.event_name == 'pull_request' }} + # uses: orgoro/coverage@v3 + # with: + # coverageFile: coverage.xml + # token: ${{ secrets.GITHUB_TOKEN }} + # thresholdAll: ${{ steps.coverage-target.outputs.fail-under }} + # thresholdNew: 0 + # thresholdModified: 0