diff options
| -rw-r--r-- | .github/workflows/main.yml | 2 | ||||
| -rw-r--r-- | .gitignore | 1 | ||||
| -rw-r--r-- | setup.cfg | 7 | ||||
| -rw-r--r-- | tox.ini | 1 |
4 files changed, 10 insertions, 1 deletions
diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index 06f57fd..e6ee180 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -25,5 +25,5 @@ jobs: run: python -m pip install -e . - name: Test with pytest run: | - python -m pip install pytest + python -m pip install pytest pytest-cov pytest @@ -19,6 +19,7 @@ pip-log.txt # Unit test / coverage reports .coverage .tox +htmlcov/ #Translations *.mo @@ -1,2 +1,9 @@ [sdist] force_manifest = 1 + +[tool:pytest] +addopts = + --cov=feedgenerator + --cov=tests_feedgenerator + --cov-report=html + --cov-report=term-missing:skip-covered @@ -12,3 +12,4 @@ commands = pytest deps = pytest + pytest-cov |
