diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 072d32f..67b98f6 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -38,14 +38,14 @@ jobs: run: make flake8 - name: Test run: make test - - name: Coverage - if: startsWith(matrix.platform, 'ubuntu') && matrix.python-version == '3.8' - run: make coverage - - name: Coverage Publish - if: startsWith(matrix.platform, 'ubuntu') && matrix.python-version == '3.8' - uses: codecov/codecov-action@v1 - with: - token: ${{ secrets.CODECOV_TOKEN }} + # - name: Coverage + # if: startsWith(matrix.platform, 'ubuntu') && matrix.python-version == '3.8' + # run: make coverage + # - name: Coverage Publish + # if: startsWith(matrix.platform, 'ubuntu') && matrix.python-version == '3.8' + # uses: codecov/codecov-action@v1 + # with: + # token: ${{ secrets.CODECOV_TOKEN }} - name: Package Publish if: startsWith(matrix.platform, 'ubuntu') && matrix.python-version == '3.8' && github.event_name == 'push' && startsWith(github.ref, 'refs/tags') env: diff --git a/Pipfile b/Pipfile index 84ac6c5..fa038a8 100644 --- a/Pipfile +++ b/Pipfile @@ -5,7 +5,7 @@ verify_ssl = true [dev-packages] pytest = "*" -codecov = "*" +# codecov = "*" mock = "*" pytest-cov = "*" readme-renderer = "*"