pytest-print adds the printer fixture you can use to print messages to the user (directly to the pytest runner, not stdout)
Project description
pytest-print
Allows to print extra content onto the PyTest reporting. This can be used for example to report sub-steps for long running tests, or to print debug information in your tests when you cannot debug the code.
install
pip install pytest-print
The plugin provides ability to print information during the tests runs.
flags
--print
by default the module activates print when pytest verbosity is greater than zero, this allows to bypass this and force print irrespective of the verbosity--print-relative-time
will print the relative time since the start of the test (display how long it takes to reach prints)
use cases
sub-step reporting
For tests that are long running this can provide a feedback to the end-user that what is just happening in the background.
def test_server_parallel_requests(printer, tmpdir):
printer("create virtual environment into {}".format(tmpdir))
create_virtual_environment(tmpdir)
printer("start server from virtual env")
start_server(tmpdir)
printer("do the parallel request test")
parallel_requests()
$ py.test --vv
============================= test session starts ==============================
platform linux -- Python 3.6.4, pytest-3.5.0, py-1.5.3, pluggy-0.6.0
collecting ... collected 1 item
test_printer_progress.py::test_server_parallel_requests
create virtual environment
start server from virtual env
do the parallel request test
PASSED [100%]
=========================== 1 passed in 0.02 seconds ===========================
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
pytest_print-0.3.3.tar.gz
(9.5 kB
view hashes)
Built Distribution
Close
Hashes for pytest_print-0.3.3-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | c781150d86f5e0619a9309448e805763e8767472ca6c85bd544d0ba1b38115bb |
|
MD5 | 14fcdc5c02092c6794d8c5a06603c810 |
|
BLAKE2b-256 | 633701a9d86b6183f7efdeeb99ffe3f2abe221a4d21ea9b31544a2c2ff8fad9c |