stj / pytest-django-sqlcount

py.test plugin for reporting the number of SQLs executed per django testcase.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

pytest-django-sqlcount

Downloads Latest Version 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.

About

py.test plugin for reporting the number of SQLs executed per django testcase.

License:MIT License


Languages

Language:Python 100.0%