正在从 conftest.py 访问测试文件名

Accessing test file name from conftest.py

我想做什么

我正在使用 pytest 在 python 中编写一个小框架,作为拆解的一部分,我正在截取屏幕截图。 现在,我希望根据 运行 测试命名该屏幕截图,而不是 conftest.py 因此,例如,我现在的代码是:

driver.save_screenshot(os.path.basename(__file__)+'.png')

问题

这会打印姓名 "conftest.py"。 如果可能,我想打印调用测试名称。我猜使用请求?

您可以通过request.node.fspath访问当前文件路径。示例:

# conftest.py
import pytest

@pytest.fixture
def currpath(request):
    return str(request.node.fspath)