I want to completely custom tests results output. In unittest I can implement my own test runner by example of unittest.TextTestRunner. How can I d
unittest
unittest.TextTestRunner
You'll need to work with pytest hooks:
pytest
py.test calls hook functions to implement initialization, running, test execution and reporting.
Also see: