我是 pytest 的新手,我找不到解决问题的方法。
我知道一些pytest的钩子,例如 pytest_addoption() 和 pytest_configure()
我试图确定 pytest_addoption() 是否先运行以及如何运行,然后才运行 pytest_configure() >。
如果有人知道我在哪里可以找到一些信息或可以分享他的知识。 谢谢!
答案 0 :(得分:0)
pytest中的钩子流在此处指定:
https://pytest.readthedocs.io/en/2.8.7/_modules/_pytest/hookspec.html
请参见下面的文档字符串的第一行
def pytest_configure(config):
""" called after command line options have been parsed
and all plugins and initial conftest files been loaded.
This hook is called for every plugin.
"""