From 9810bac85f531c6bd66a2da3432f9349863720b4 Mon Sep 17 00:00:00 2001 From: Matthew McDermott Date: Wed, 12 Jun 2024 09:13:23 -0400 Subject: [PATCH] Made coverage only cover 'src' --- .github/workflows/tests.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yaml b/.github/workflows/tests.yaml index 6b8286e..b982ebd 100644 --- a/.github/workflows/tests.yaml +++ b/.github/workflows/tests.yaml @@ -33,7 +33,7 @@ jobs: #---------------------------------------------- - name: Run tests run: | - pytest -v --doctest-modules --cov --ignore=docs + pytest -v --doctest-modules --cov=src --ignore=docs - name: Upload coverage to Codecov uses: codecov/codecov-action@v4.0.1