diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 2745943..f080a96 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -25,6 +25,7 @@ jobs: run: | python -m pip install --upgrade pip python -m pip install pytest-cov + python -m pip install coverage python -m pip install . # python -m pip install tox tox-gh-actions # - name: Test with tox @@ -32,7 +33,8 @@ jobs: - name: Test with pytest run: | - pytest --cov=. + # pytest --cov=. + coverage run --source=${{ github.workspace }} --module=pytest # env: # PLATFORM: ${{ matrix.platform }}