From eab0e860819089ffd4afd582bf467ed614145a02 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jan=20Jan=C3=9Fen?= Date: Sun, 18 Feb 2024 21:51:48 +0100 Subject: [PATCH] fix coverage --- .coveragerc | 5 ----- .github/workflows/coverage.yml | 3 +-- 2 files changed, 1 insertion(+), 7 deletions(-) delete mode 100644 .coveragerc diff --git a/.coveragerc b/.coveragerc deleted file mode 100644 index cdb06be7..00000000 --- a/.coveragerc +++ /dev/null @@ -1,5 +0,0 @@ -# .coveragerc to control coverage.py -[run] -source = pysqa -omit = pysqa/_version.py -concurrency = multiprocessing diff --git a/.github/workflows/coverage.yml b/.github/workflows/coverage.yml index 0f17c41d..97880add 100644 --- a/.github/workflows/coverage.yml +++ b/.github/workflows/coverage.yml @@ -37,7 +37,6 @@ jobs: run: | pip install versioneer[toml]==0.29 pip install . --no-deps --no-build-isolation - coverage run --omit pysqa/_version.py -m unittest discover tests - coverage combine + coverage run --omit="pysqa/_version.py,tests/*" -m unittest discover tests - name: Coveralls uses: coverallsapp/github-action@v2