From 04a962086e24ce8d44159265600594f8c8e95b76 Mon Sep 17 00:00:00 2001 From: Attumm Date: Mon, 12 Aug 2024 11:08:39 +0200 Subject: [PATCH] Changed omit test files from coverage --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index fde6f7e..cfa39cc 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -49,7 +49,7 @@ jobs: - name: Run Unit Tests run: | - coverage run -m unittest discover tests/ -p "*test*.py" + coverage run --omit="*test*" -m unittest discover tests/ -p "*test*.py" - name: Upload coverage reports to Codecov, send only once if: matrix.python-version == '3.12'