A pytest plugin to get durations on a per-function basis and per module basis.
Project description
pytest-extra-durations
Get more info about the speed of your test suite.
It works with pytest-xdist too.
Installation
You can install "pytest-extra-durations" via pip
:
pip install pytest-extra-durations
Usage
This plugin provides three types of information.
The sum of all tests/setup/teardown durations
This can give you more info than the total time displayed by pytest because it's not influenced by the number of workers in pytest-dist, or the collection time.
Exemple:
============== Sum of all tests durations ===============
1.95s
This will be displayed all the time and can't be turned off unless you uninstall this plugin.
The sum of all the tests durations of a module
This will tell you how much time it took to execute all the tests in a given file.
The API is similar to the one of --durations
in the Pytest CLI.
pytest --modules-durations=4 ./path/to/test/directory
gives:
=============== slowest 4 modules durations =============
1.17s tensorflow_addons/activations/tests/sparsemax_test.py
0.28s tensorflow_addons/activations/tests/gelu_test.py
0.10s tensorflow_addons/activations/tests/softshrink_test.py
0.09s tensorflow_addons/activations/tests/rrelu_test.py
The sum of all the tests durations of a test function
A test function can produce multiple tests, that can be executed on different workers too. This will sum the durations of all tests, setups and teardown produced by a single test function, and report the slower ones.
The API is similar to the one of --durations
in the Pytest CLI.
pytest --functions-durations=4 ./path/to/test/directory
gives:
============ slowest test functions =============
0.99s tensorflow_addons/activations/tests/sparsemax_test.py::test_gradient_against_estimate
0.17s tensorflow_addons/activations/tests/gelu_test.py::test_same_as_py_func
0.09s tensorflow_addons/activations/tests/softshrink_test.py::test_same_as_py_func
0.08s tensorflow_addons/activations/tests/gelu_test.py::test_gelu
0.08s tensorflow_addons/activations/tests/rrelu_test.py::test_theoretical_gradients
TODO:
- Integration with line_profiler
License
Distributed under the terms of the MIT
_ license, "pytest-extra-durations" is free and open source software
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
Hashes for pytest-extra-durations-0.1.3.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | b67a681e3432285c0201451f328782ee65f8e5592c5739cd732d315545de82a4 |
|
MD5 | a36b306c3c7d715dcd1796c9e825cbaa |
|
BLAKE2b-256 | 9e9c9f42b36184b5cbb4ea8e4a8c6402fe9772afba8fa3d22bb488d8886cdcf0 |
Hashes for pytest_extra_durations-0.1.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5ad27c7302cc124884e04bd8feafa5995e2997c0805b3ce4189f9ff1288e1091 |
|
MD5 | e5e43a9ea0f3b15d6534275c4a429653 |
|
BLAKE2b-256 | c48aba599f530bf58e2fc70d3722a548974beddfab49aec480770714f53f0545 |