From 3fe6cd557d4379e18877a2ecbd0673ed64b9b419 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Odd=20Str=C3=A5b=C3=B8?= Date: Tue, 29 Sep 2020 01:06:00 +0200 Subject: [PATCH] Disable codecov --- .github/workflows/python-sanity.yaml | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/.github/workflows/python-sanity.yaml b/.github/workflows/python-sanity.yaml index 171dbfc9..a0ab1b77 100644 --- a/.github/workflows/python-sanity.yaml +++ b/.github/workflows/python-sanity.yaml @@ -61,14 +61,14 @@ jobs: coverage run coverage report - - name: Upload coverage report to Codecov - if: ${{ steps.tests.conclusion == 'success' }} - env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} - run: | - coverage xml - bash <(curl -s https://codecov.io/bash) \ - || echo "::warning ::Codecov upload failed" +# - name: Upload coverage report to Codecov +# if: ${{ steps.tests.conclusion == 'success' }} +# env: +# CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} +# run: | +# coverage xml +# bash <(curl -s https://codecov.io/bash) \ +# || echo "::warning ::Codecov upload failed" - name: Error on flake8 if: ${{ steps.flake8.outputs.lint != 'ok' }}