A simple plugin to ensure the execution of critical sections of code has not been impacted
Project description
A simple plugin to ensure the execution of critical sections of code has not been impacted between releases.
Features
Parameterisation of profiling parameters
Support for all time measurement units
Installation
You can install “pytest-performance” via pip from PyPI:
$ pip install pytest-performance
Usage
Default
def my_func(*args, **kwargs):
return 123
def test_my_func(performance):
# Check my_func runs within 1 second for 10000 iterations.
result = performance(my_func)
assert result == 123
Set custom time amount
def my_func(*args, **kwargs):
return 123
def test_my_func(performance):
# Check my_func runs within 10 seconds for 10000 iterations.
result = performance(my_func, target=10)
assert result == 123
Set custom time amount and unit (pint units supported)
def my_func(*args, **kwargs):
return 123
def test_my_func(performance):
# Check my_func runs within 1 nanosecond for 10000 iterations.
result = performance(my_func, target=10, unit='ns')
assert result == 123
Set custom time amount, unit and number of iterations
def my_func(*args, **kwargs):
return 123
def test_my_func(performance):
# Check my_func runs within 1 nanosecond for 10 iterations.
result = performance(my_func, target=10, unit='ns', iterations=10)
assert result == 123
Fixture can be disabled by passing ‘–performance-skip’ to pytest
Contributing
Contributions are very welcome. Tests can be run with tox, please ensure the coverage at least stays the same before you submit a pull request.
License
Distributed under the terms of the MIT license, “pytest-performance” is free and open source software
Issues
If you encounter any problems, please file an issue along with a detailed description.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pytest-performance-0.1.0.tar.gz.
File metadata
- Download URL: pytest-performance-0.1.0.tar.gz
- Upload date:
- Size: 4.4 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0.post20200814 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f7f67c4becf02a1f4d5c1f536cbb61cf66f3d7df46cac78284edcd0a495e0e15
|
|
| MD5 |
1337397d678baa4025368af45afe871c
|
|
| BLAKE2b-256 |
0e3e8037e8c940f993890e78faace9bdf40aa99307fd8da421ff036d0cf7dd7d
|
File details
Details for the file pytest_performance-0.1.0-py3-none-any.whl.
File metadata
- Download URL: pytest_performance-0.1.0-py3-none-any.whl
- Upload date:
- Size: 4.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.2.0 pkginfo/1.5.0.1 requests/2.24.0 setuptools/49.6.0.post20200814 requests-toolbelt/0.9.1 tqdm/4.48.2 CPython/3.7.9
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
9fa546fa98c9fb827495e4f10e6337be3f87272c8a8baf284952209ef8e6ab46
|
|
| MD5 |
e1e822928b3a61b6e5b541c709df8fbc
|
|
| BLAKE2b-256 |
f9d3aa73ae03eabbd6c5bd11a2dd2d091cf6bf5c68bb6416f5288d345c2caf58
|