use 'pytest --fixtures [testpath]' for help on them.
时间: 2023-05-23 08:06:21 浏览: 182
Python库 | pytest-server-fixtures-1.0.1.tar.gz
A:pytest --fixtures [testpath] 用于列出测试路径中可用的所有 fixtures 的帮助信息。Fixtures 是 pytest 的一个强大功能,它允许您在测试方法之间共享测试数据和资源,并封装测试方法的设置和清理。 在 pytest 中,fixtures 通常定义在 conftest.py 文件中,每个 fixture 都是一个带有装饰器的函数,当测试方法请求该 fixture 时,pytest 将在 conftest.py 中查找该函数并返回装饰器函数的返回值作为 fixture 的值。
阅读全文