From 70d06a0bcd07c485e3af61d21eacd4e528ee98fa Mon Sep 17 00:00:00 2001 From: Eric Peterson Date: Tue, 29 Aug 2023 20:45:49 -0700 Subject: [PATCH] Fix unit test coverage report --- .github/workflows/unit_test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/unit_test.yml b/.github/workflows/unit_test.yml index 65f1929..00cf4bd 100644 --- a/.github/workflows/unit_test.yml +++ b/.github/workflows/unit_test.yml @@ -33,4 +33,4 @@ jobs: - name: Test with pytest run: | pip install pytest pytest-cov - python -m pytest --doctest-modules --junitxml=junit/test-results.xml --cov=com --cov-report=xml --cov-report=html + python -m pytest --doctest-modules --junitxml=junit/test-results.xml --cov=. --cov-report=xml --cov-report=html