├── .coveragerc ├── .editorconfig ├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── .travis.yml ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── HISTORY.rst ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── archive-artifact.png ├── cop.sh ├── docs ├── Makefile ├── authors.rst ├── conf.py ├── contributing.rst ├── history.rst ├── index.rst ├── installation.rst ├── make.bat ├── readme.rst └── usage.rst ├── logo.png ├── manage.py ├── requirements.txt ├── requirements_dev.txt ├── requirements_test.txt ├── runtests.py ├── setup.cfg ├── setup.py ├── test_query_counter ├── __init__.py ├── apps.py ├── management │ ├── __init__.py │ └── commands │ │ ├── __init__.py │ │ └── check_query_count.py ├── manager.py ├── middleware.py ├── models.py └── query_count.py ├── tests ├── __init__.py ├── settings.py ├── test_app_config.py ├── test_middleware.py ├── test_query_count_containers.py ├── test_query_count_evaluator.py ├── test_query_count_runner.py ├── urls.py └── views.py └── tox.ini /.coveragerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/django-test-query-counter/HEAD/.coveragerc -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/django-test-query-counter/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/django-test-query-counter/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/django-test-query-counter/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/django-test-query-counter/HEAD/.travis.yml -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/django-test-query-counter/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/django-test-query-counter/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /HISTORY.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/django-test-query-counter/HEAD/HISTORY.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/django-test-query-counter/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/django-test-query-counter/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/django-test-query-counter/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/django-test-query-counter/HEAD/README.rst -------------------------------------------------------------------------------- /archive-artifact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/django-test-query-counter/HEAD/archive-artifact.png -------------------------------------------------------------------------------- /cop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/django-test-query-counter/HEAD/cop.sh -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/django-test-query-counter/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/authors.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../AUTHORS.rst 2 | -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/django-test-query-counter/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst 2 | -------------------------------------------------------------------------------- /docs/history.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../HISTORY.rst 2 | -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/django-test-query-counter/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/django-test-query-counter/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/django-test-query-counter/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/readme.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../README.rst 2 | -------------------------------------------------------------------------------- /docs/usage.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/django-test-query-counter/HEAD/docs/usage.rst -------------------------------------------------------------------------------- /logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/django-test-query-counter/HEAD/logo.png -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/django-test-query-counter/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | # Additional requirements go here 2 | Django 3 | -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/django-test-query-counter/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /requirements_test.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/django-test-query-counter/HEAD/requirements_test.txt -------------------------------------------------------------------------------- /runtests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/django-test-query-counter/HEAD/runtests.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/django-test-query-counter/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/django-test-query-counter/HEAD/setup.py -------------------------------------------------------------------------------- /test_query_counter/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/django-test-query-counter/HEAD/test_query_counter/__init__.py -------------------------------------------------------------------------------- /test_query_counter/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/django-test-query-counter/HEAD/test_query_counter/apps.py -------------------------------------------------------------------------------- /test_query_counter/management/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_query_counter/management/commands/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_query_counter/management/commands/check_query_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/django-test-query-counter/HEAD/test_query_counter/management/commands/check_query_count.py -------------------------------------------------------------------------------- /test_query_counter/manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/django-test-query-counter/HEAD/test_query_counter/manager.py -------------------------------------------------------------------------------- /test_query_counter/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/django-test-query-counter/HEAD/test_query_counter/middleware.py -------------------------------------------------------------------------------- /test_query_counter/models.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test_query_counter/query_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/django-test-query-counter/HEAD/test_query_counter/query_count.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/django-test-query-counter/HEAD/tests/settings.py -------------------------------------------------------------------------------- /tests/test_app_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/django-test-query-counter/HEAD/tests/test_app_config.py -------------------------------------------------------------------------------- /tests/test_middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/django-test-query-counter/HEAD/tests/test_middleware.py -------------------------------------------------------------------------------- /tests/test_query_count_containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/django-test-query-counter/HEAD/tests/test_query_count_containers.py -------------------------------------------------------------------------------- /tests/test_query_count_evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/django-test-query-counter/HEAD/tests/test_query_count_evaluator.py -------------------------------------------------------------------------------- /tests/test_query_count_runner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/django-test-query-counter/HEAD/tests/test_query_count_runner.py -------------------------------------------------------------------------------- /tests/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/django-test-query-counter/HEAD/tests/urls.py -------------------------------------------------------------------------------- /tests/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/django-test-query-counter/HEAD/tests/views.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sophilabs/django-test-query-counter/HEAD/tox.ini --------------------------------------------------------------------------------