From 4921755b5a02ad745cd4c59bca285c533d97096b Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Eugenio=20Panadero=20Maci=C3=A1?= Date: Thu, 1 Jun 2023 21:44:28 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=9A=A7=20Disable=20codecov=20integration?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/main.yml | 10 +++++----- README.md | 3 --- pyproject.toml | 1 + 3 files changed, 6 insertions(+), 8 deletions(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 832213f..3b056e6 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -25,12 +25,12 @@ jobs: - name: Run tests run: poetry run pytest - - name: Upload coverage reports to Codecov - uses: codecov/codecov-action@v3 - env: - CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} + # - name: Upload coverage reports to Codecov + # uses: codecov/codecov-action@v3 + # env: + # CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }} - # publish version only when pyproject.toml is changed in master + # publish version only when pyproject.toml is changed in master - name: Filter changes in pyproject uses: dorny/paths-filter@v2 id: changes diff --git a/README.md b/README.md index 98a2b97..e2fad7f 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,5 @@ [![pre-commit.ci Status][pre-commit-ci-image]][pre-commit-ci-url] [![Build Status][build-image]][build-url] -[![Code Coverage][coverage-image]][coverage-url] [![PyPI Version][pypi-image]][pypi-url] @@ -9,8 +8,6 @@ [pre-commit-ci-url]: https://results.pre-commit.ci/latest/github/azogue/psychrochart/master [build-image]: https://github.com/azogue/psychrochart/actions/workflows/main.yml/badge.svg [build-url]: https://github.com/azogue/psychrochart/actions/workflows/main.yml -[coverage-image]: https://codecov.io/gh/azogue/psychrochart/branch/master/graph/badge.svg -[coverage-url]: https://codecov.io/gh/azogue/psychrochart [pypi-image]: https://img.shields.io/pypi/v/psychrochart [pypi-url]: https://pypi.org/project/psychrochart/ diff --git a/pyproject.toml b/pyproject.toml index 1529503..cc0d601 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -17,6 +17,7 @@ line-length = 79 [tool.coverage.run] branch = true source = ["psychrochart"] +relative_files = true [tool.coverage.paths] source = ["psychrochart/"]