├── .coveragerc ├── .github └── workflows │ ├── actions.yml │ └── lint.yml ├── .gitignore ├── AUTHORS.txt ├── CHANGELOG.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── docs ├── Makefile ├── auth_helpers.rst ├── cbvtestcase.rst ├── conf.py ├── disable_logging.rst ├── index.rst ├── low_query_counts.rst ├── make.bat ├── methods.rst ├── modules │ ├── modules.rst │ └── test_plus.rst └── usage.rst ├── noxfile.py ├── pytest.ini ├── setup.cfg ├── setup.py ├── test_plus ├── __init__.py ├── compat.py ├── plugin.py ├── runner.py ├── status_codes.py └── test.py └── test_project ├── manage.py ├── test_app ├── __init__.py ├── forms.py ├── migrations │ ├── 0001_initial.py │ └── __init__.py ├── models.py ├── templates │ ├── form_errors.html │ ├── other.html │ └── test.html ├── tests │ ├── test_pytest.py │ └── test_unittests.py ├── urls.py └── views.py └── test_project ├── __init__.py ├── settings.py ├── templates ├── base.html └── registration │ └── login.html └── wsgi.py /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revsys/django-test-plus/HEAD/.coveragerc -------------------------------------------------------------------------------- /.github/workflows/actions.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revsys/django-test-plus/HEAD/.github/workflows/actions.yml -------------------------------------------------------------------------------- /.github/workflows/lint.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revsys/django-test-plus/HEAD/.github/workflows/lint.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revsys/django-test-plus/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revsys/django-test-plus/HEAD/AUTHORS.txt -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revsys/django-test-plus/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revsys/django-test-plus/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revsys/django-test-plus/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revsys/django-test-plus/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revsys/django-test-plus/HEAD/README.md -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revsys/django-test-plus/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/auth_helpers.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revsys/django-test-plus/HEAD/docs/auth_helpers.rst -------------------------------------------------------------------------------- /docs/cbvtestcase.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revsys/django-test-plus/HEAD/docs/cbvtestcase.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revsys/django-test-plus/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/disable_logging.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revsys/django-test-plus/HEAD/docs/disable_logging.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revsys/django-test-plus/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/low_query_counts.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revsys/django-test-plus/HEAD/docs/low_query_counts.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revsys/django-test-plus/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/methods.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revsys/django-test-plus/HEAD/docs/methods.rst -------------------------------------------------------------------------------- /docs/modules/modules.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revsys/django-test-plus/HEAD/docs/modules/modules.rst -------------------------------------------------------------------------------- /docs/modules/test_plus.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revsys/django-test-plus/HEAD/docs/modules/test_plus.rst -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revsys/django-test-plus/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /noxfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revsys/django-test-plus/HEAD/noxfile.py -------------------------------------------------------------------------------- /pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revsys/django-test-plus/HEAD/pytest.ini -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revsys/django-test-plus/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revsys/django-test-plus/HEAD/setup.py -------------------------------------------------------------------------------- /test_plus/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revsys/django-test-plus/HEAD/test_plus/__init__.py -------------------------------------------------------------------------------- /test_plus/compat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revsys/django-test-plus/HEAD/test_plus/compat.py -------------------------------------------------------------------------------- /test_plus/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revsys/django-test-plus/HEAD/test_plus/plugin.py -------------------------------------------------------------------------------- /test_plus/runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revsys/django-test-plus/HEAD/test_plus/runner.py -------------------------------------------------------------------------------- /test_plus/status_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revsys/django-test-plus/HEAD/test_plus/status_codes.py -------------------------------------------------------------------------------- /test_plus/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revsys/django-test-plus/HEAD/test_plus/test.py -------------------------------------------------------------------------------- /test_project/manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revsys/django-test-plus/HEAD/test_project/manage.py -------------------------------------------------------------------------------- /test_project/test_app/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_project/test_app/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revsys/django-test-plus/HEAD/test_project/test_app/forms.py -------------------------------------------------------------------------------- /test_project/test_app/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revsys/django-test-plus/HEAD/test_project/test_app/migrations/0001_initial.py -------------------------------------------------------------------------------- /test_project/test_app/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_project/test_app/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revsys/django-test-plus/HEAD/test_project/test_app/models.py -------------------------------------------------------------------------------- /test_project/test_app/templates/form_errors.html: -------------------------------------------------------------------------------- 1 | {# stub file used for a test #} 2 | -------------------------------------------------------------------------------- /test_project/test_app/templates/other.html: -------------------------------------------------------------------------------- 1 |

Another template

-------------------------------------------------------------------------------- /test_project/test_app/templates/test.html: -------------------------------------------------------------------------------- 1 |

Hello world

-------------------------------------------------------------------------------- /test_project/test_app/tests/test_pytest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revsys/django-test-plus/HEAD/test_project/test_app/tests/test_pytest.py -------------------------------------------------------------------------------- /test_project/test_app/tests/test_unittests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revsys/django-test-plus/HEAD/test_project/test_app/tests/test_unittests.py -------------------------------------------------------------------------------- /test_project/test_app/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revsys/django-test-plus/HEAD/test_project/test_app/urls.py -------------------------------------------------------------------------------- /test_project/test_app/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revsys/django-test-plus/HEAD/test_project/test_app/views.py -------------------------------------------------------------------------------- /test_project/test_project/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_project/test_project/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revsys/django-test-plus/HEAD/test_project/test_project/settings.py -------------------------------------------------------------------------------- /test_project/test_project/templates/base.html: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_project/test_project/templates/registration/login.html: -------------------------------------------------------------------------------- 1 |

Login!

2 | -------------------------------------------------------------------------------- /test_project/test_project/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/revsys/django-test-plus/HEAD/test_project/test_project/wsgi.py --------------------------------------------------------------------------------