├── .editorconfig ├── .github └── workflows │ └── tests.yml ├── .gitignore ├── .isort.cfg ├── AUTHORS.txt ├── LICENSE.txt ├── MANIFEST.in ├── Makefile ├── NOTICE.txt ├── README.rst ├── django_coverage_plugin ├── __init__.py └── plugin.py ├── howto.txt ├── pyproject.toml ├── requirements.txt ├── tests ├── __init__.py ├── banner.py ├── conftest.py ├── plugin_test.py ├── test_engines.py ├── test_extends.py ├── test_flow.py ├── test_helpers.py ├── test_html.py ├── test_i18n.py ├── test_settings.py ├── test_simple.py └── test_source.py └── tox.ini /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveragepy/django_coverage_plugin/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveragepy/django_coverage_plugin/HEAD/.github/workflows/tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | *.pyc 2 | .coverage 3 | htmlcov 4 | .tox 5 | MANIFEST 6 | *.egg-info 7 | build 8 | dist 9 | -------------------------------------------------------------------------------- /.isort.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveragepy/django_coverage_plugin/HEAD/.isort.cfg -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveragepy/django_coverage_plugin/HEAD/AUTHORS.txt -------------------------------------------------------------------------------- /LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveragepy/django_coverage_plugin/HEAD/LICENSE.txt -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveragepy/django_coverage_plugin/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveragepy/django_coverage_plugin/HEAD/Makefile -------------------------------------------------------------------------------- /NOTICE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveragepy/django_coverage_plugin/HEAD/NOTICE.txt -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveragepy/django_coverage_plugin/HEAD/README.rst -------------------------------------------------------------------------------- /django_coverage_plugin/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveragepy/django_coverage_plugin/HEAD/django_coverage_plugin/__init__.py -------------------------------------------------------------------------------- /django_coverage_plugin/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveragepy/django_coverage_plugin/HEAD/django_coverage_plugin/plugin.py -------------------------------------------------------------------------------- /howto.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveragepy/django_coverage_plugin/HEAD/howto.txt -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveragepy/django_coverage_plugin/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveragepy/django_coverage_plugin/HEAD/requirements.txt -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveragepy/django_coverage_plugin/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/banner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveragepy/django_coverage_plugin/HEAD/tests/banner.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveragepy/django_coverage_plugin/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/plugin_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveragepy/django_coverage_plugin/HEAD/tests/plugin_test.py -------------------------------------------------------------------------------- /tests/test_engines.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveragepy/django_coverage_plugin/HEAD/tests/test_engines.py -------------------------------------------------------------------------------- /tests/test_extends.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveragepy/django_coverage_plugin/HEAD/tests/test_extends.py -------------------------------------------------------------------------------- /tests/test_flow.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveragepy/django_coverage_plugin/HEAD/tests/test_flow.py -------------------------------------------------------------------------------- /tests/test_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveragepy/django_coverage_plugin/HEAD/tests/test_helpers.py -------------------------------------------------------------------------------- /tests/test_html.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveragepy/django_coverage_plugin/HEAD/tests/test_html.py -------------------------------------------------------------------------------- /tests/test_i18n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveragepy/django_coverage_plugin/HEAD/tests/test_i18n.py -------------------------------------------------------------------------------- /tests/test_settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveragepy/django_coverage_plugin/HEAD/tests/test_settings.py -------------------------------------------------------------------------------- /tests/test_simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveragepy/django_coverage_plugin/HEAD/tests/test_simple.py -------------------------------------------------------------------------------- /tests/test_source.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveragepy/django_coverage_plugin/HEAD/tests/test_source.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/coveragepy/django_coverage_plugin/HEAD/tox.ini --------------------------------------------------------------------------------