Skip to main content

Pytest plugin for reporting running time and peak memory usage

Project description

pytest-resource-usage

Add running times and peak memory usage of tests to the output of pytest. Two ways of measuring memory usage are implemented. The first uses tracemalloc, which is unaffected by swapping. Since tracemalloc is a standard library, this way of measuring introduces no dependencies beyond pytest. However, measuring with tracemalloc can have a high overhead. The other way of measuring memory usage is by means of sampling the unique set size. This method has lower overhead, but can be less accurate and is only available if the psutil package is installed.

The pytest-resource-usage package is intentionally kept fairly simple. If you want something more feature-rich and ambitious, you should use pytest-monitor.

Example usage

Reporting is triggered by the presence of one or more of the following markers:

  • report_duration,
  • report_tracemalloc,
  • report_uss (requires psutil).
from time import sleep

import pytest


@pytest.mark.report_duration
def test_sleep():
    sleep(99)


@pytest.mark.report_uss
@pytest.mark.report_tracemalloc
@pytest.mark.report_duration
@pytest.mark.parametrize("elements", [2_000_000, 1_000_000])
def test_tracemalloc_overhead(elements):
    _ = list(range(elements))


@pytest.mark.report_uss(interval=0.01)
@pytest.mark.report_duration
def test_unique_set_size():
    _ = list(range(1_000_000))


@pytest.mark.report_duration
def test_no_overhead():
    _ = list(range(1_000_000))

Running the above tests produces the following pytest output.

================================================================ test session starts =================================================================
plugins: pytest-resource-usage-1.0.0
collected 5 items                                                                                                                                    

tests/test_readme.py .....                                                                                                                     [100%]

=================================================================== resource usage ===================================================================
tests/test_readme.py::test_sleep (call) running time: 0:01:39
tests/test_readme.py::test_tracemalloc_overhead[2000000] (call) peak allocated memory: 72MB, peak unique set size: 243MB, running time: 0.627 seconds
tests/test_readme.py::test_tracemalloc_overhead[1000000] (call) peak allocated memory: 36MB, peak unique set size: 115MB, running time: 0.329 seconds
tests/test_readme.py::test_unique_set_size (call) peak unique set size: 25.7MB, running time: 0.047 seconds
tests/test_readme.py::test_no_overhead (call) running time: 0.020 seconds
=========================================================== 5 passed in 100.13s (0:01:40) ============================================================

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-resource-usage-1.0.0.tar.gz (5.6 kB view details)

Uploaded Source

Built Distribution

pytest_resource_usage-1.0.0-py3-none-any.whl (7.5 kB view details)

Uploaded Python 3

File details

Details for the file pytest-resource-usage-1.0.0.tar.gz.

File metadata

File hashes

Hashes for pytest-resource-usage-1.0.0.tar.gz
Algorithm Hash digest
SHA256 3a200cee007fc3e7496ff34620b2841494356c92063aa6fa79e9201fd1e583cc
MD5 80572298ff0520305b16d8d95bc8545d
BLAKE2b-256 0645596537d11af41c8e11662b9c237cbdebcca30fb4d7fd189bfd772ac1835c

See more details on using hashes here.

File details

Details for the file pytest_resource_usage-1.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for pytest_resource_usage-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 94534f378c13ccdf1413d461f0d780ff2cebf45f07de1622d6e1c07f0a86154b
MD5 2e743d8796a47eadf17d5e98753ff813
BLAKE2b-256 ee0c59bd48065714caa13caaeea82a458934b260c833e90057dfa93d5c8ffabc

See more details on using hashes here.

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