]> git.ipfire.org Git - thirdparty/dnspython.git/commitdiff
disable codecov
authorBob Halley <halley@dnspython.org>
Thu, 1 Aug 2024 12:05:53 +0000 (05:05 -0700)
committerBob Halley <halley@dnspython.org>
Thu, 1 Aug 2024 12:06:09 +0000 (05:06 -0700)
.github/workflows/ci.yml
README.md
codecov.yml [deleted file]

index f393a1061f72ed103c2e520882309952344344ed..4c178081624fc004f2695cdea478d37eb36d6361 100644 (file)
@@ -48,7 +48,7 @@ jobs:
     - name: Install dependencies
       run: |
         python -m pip install --upgrade pip
-        python -m pip install cryptography trio idna httpx h2 aioquic mypy pytest pytest-cov ruff
+        python -m pip install cryptography trio idna httpx h2 aioquic mypy pytest ruff
     - name: Typecheck
       run: |
         python -m mypy --install-types --non-interactive --disallow-incomplete-defs dns
@@ -57,12 +57,4 @@ jobs:
         ruff check dns
     - name: Test with pytest
       run: |
-        pytest --cov=dns --cov-branch --cov-report=xml:coverage.xml
-    - name: Upload coverage to Codecov
-      uses: codecov/codecov-action@v4
-      with:
-        files: ./coverage.xml
-        flags: unittests
-        name: codecov-umbrella
-      env:
-        CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
+        pytest
index cb9cadfaf9a0ceaf38813c7be6a6ed07ee56be35..4a83ce7afba79f462d1a41b9be45e6df76c92fca 100644 (file)
--- a/README.md
+++ b/README.md
@@ -4,7 +4,6 @@
 [![Documentation Status](https://readthedocs.org/projects/dnspython/badge/?version=latest)](https://dnspython.readthedocs.io/en/latest/?badge=latest)
 [![PyPI version](https://badge.fury.io/py/dnspython.svg)](https://badge.fury.io/py/dnspython)
 [![License: ISC](https://img.shields.io/badge/License-ISC-brightgreen.svg)](https://opensource.org/licenses/ISC)
-[![Coverage](https://codecov.io/github/rthalley/dnspython/coverage.svg?branch=master)](https://codecov.io/github/rthalley/dnspython)
 [![Code style: black](https://img.shields.io/badge/code%20style-black-000000.svg)](https://github.com/psf/black)
 
 ## INTRODUCTION
diff --git a/codecov.yml b/codecov.yml
deleted file mode 100644 (file)
index 1474fc5..0000000
+++ /dev/null
@@ -1,15 +0,0 @@
-coverage:
-  status:
-    project:
-      default:
-        target: auto
-        threshold: 2%
-    patch:
-      default:
-        target: 85%
-        threshold: 2%
-ignore:
-  - 'tests/*'
-  - 'examples/*'
-  - 'doc/*'
-  - 'setup.py'