From f15d45dd43ef2d8956c0e7cbc91eb7741e9830e3 Mon Sep 17 00:00:00 2001 From: Jermiah Joseph Date: Fri, 24 May 2024 08:42:54 -0400 Subject: [PATCH] fix: explicit module to track for code coverage --- .github/workflows/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index d2d8841..f93e1b1 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -45,7 +45,7 @@ jobs: - name: Run tests run: | pip install pytest pytest-cov - pytest tests -s -v --cov --cov-report xml:coverage-report/coverage.xml + pytest tests -s -v --cov=imgtools --cov-report xml:coverage-report/coverage.xml - name: Upload coverage report artifact to be used by Codecov # only upload if matrix.os is ubuntu-latest and matrix.python-version is 3.12