Metadata-Version: 2.0
Name: pytest-django-sqlcounts
Version: 0.1.0
Summary: py.test plugin for reporting the number of SQLs executed per django testcase.
Home-page: https://github.com/stj/pytest-django-sqlcount
Author: Stefan Tjarks
Author-email: stefan [at] tjarks [dot] de
License: MIT License
Keywords: py.test pytest django sqlcount
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2.7
Classifier: Topic :: Software Development :: Testing
Requires-Dist: py (>=1.4.22)
Requires-Dist: pytest (>=2.6.0)
Requires-Dist: pytest-django (>=2.7.0)

pytest-django-sqlcount
======================

.. image:: https://pypip.in/download/pytest-django-sqlcount.png
    :target: https://pypi.python.org/pypi//pytest-django-sqlcount/
    :alt: Downloads

.. image:: https://pypip.in/version/pytest-django-sqlcount/.png
    :target: https://pypi.python.org/pypi/pytest-django-sqlcount/
    :alt: Latest Version

.. image:: https://pypip.in/license/pytest-django-sqlcount/.png
    :target: https://pypi.python.org/pypi/pytest-django-sqlcount/
    :alt: License

This plugin adds the number of SQLs executed on the default database connection
per test to the terminal report.

All features offered by the default py.test terminal plugin should be available.


Installation
------------

Install with pip::

    pip install pytest-django-sqlcount


Uninstallation
--------------

Uninstall with pip::

    pip uninstall pytest-django-sqlcount


Usage
-----

Running tests with SQLCount output::

    py.test --sqlcount myproj tests/


Limitation
----------

Keep in mind that test factories and fixtures can create more SQLs than the
tested method/function. SQLs created by those methods are included in the count.

