testing
Drop to debugger in case of test failure
pytest -x --pdb
See the output from print
in pytest
If the test cases have print()
statements, you see those, only in case of failure.
But sometime, you want to see they unconditionally (i.e. even when the tests pass)
The way to do this is use -s
option. This option disables "per test capturing".
Read the docs
Resources
- Load testing using locust.io