Skip to main content

Generate performance rapports from your django database performance tests.

Project description

pytest-django-queries

Generate performance rapports from your django database performance tests.

Requirement Status Coverage Status Version Requirement Status

Commits since latest release Supported versions Supported implementations

Usage

Simply install pytest-django-queries, write your pytest tests and mark any test that should be counted or use the count_queries fixture.

import pytest


@pytest.mark.count_queries
def test_query_performances():
    Model.objects.all()


# Or...
def test_another_query_performances(count_queries):
    Model.objects.all()

Integrating with GitHub

Testing locally

Simply install pytest-django-queries through pip and run your tests using pytest. A report should have been generated in your current working directory in a JSON file prefixed with .pytest-queries.

Note: to override the save path, set the PYTEST_QUERIES_SAVE_PATH environment variable to any given valid path.

Visualising Results

Comparing results

Development

First of all, clone the project locally. Then, install it using the below command.

./setup.py develop

After that, you need to install the development requirements. For that, run the below command.

pip install -e .[dev]

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pytest-django-queries-0.1.0.tar.gz (3.6 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page