i did some research in the sites below but i haven't still figured out if we can define pytest hooks (e.g. pytest_runtest_makereport) other than in the conftest.py file. basically, what i am trying to figure out is if i avoid duplicating conftest.py files by defining a hook inside a base class, for example, so other projects (or classes) consuming this base class can inherit these hooks.
thanks a lot.
references i've used:
- http://pytest.org/latest/plugins.html
- http://pytest.org/latest/example/simple.html
- several other stack overflow pages talking about hooks