diff --git a/.github/workflows/python.yml b/.github/workflows/python.yml index b20e02a..a235300 100644 --- a/.github/workflows/python.yml +++ b/.github/workflows/python.yml @@ -30,7 +30,7 @@ jobs: - name: Lint run: poetry run flake8 -v . - name: Test - run: poetry run pytest -v -s --cov=template --cov-report=xml tests + run: poetry run pytest -v -s --cov=. --cov-report=xml tests - name: Upload coverage reports to Codecov uses: codecov/codecov-action@v3 env: diff --git a/Makefile b/Makefile index 1bf40a1..03f4707 100644 --- a/Makefile +++ b/Makefile @@ -5,7 +5,7 @@ lint: poetry run flake8 -v test: - poetry run pytest -v -s --cov=template tests + poetry run pytest -v -s --cov=. tests publish: poetry build -f wheel