diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index de7f1c7..ccc743c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -31,5 +31,5 @@ jobs: - name: Install Hatch run: pip install hatch==${{ env.HATCH_VERSION }} - - name: Run unit and integration tests - run: hatch run test:all + - name: Run tests and generate coverage report + run: hatch run test:cov diff --git a/pyproject.toml b/pyproject.toml index 2b401c7..6e1d10e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -54,7 +54,7 @@ cov-report = [ "coverage report", ] cov = [ - "test-cov", + "all-cov", "cov-report", ]