pytest-recording 有@pytest.mark.record 标签吗
时间: 2023-08-12 21:01:44 浏览: 122
很抱歉,我之前的回答有误。`pytest-recording` 插件中确实包含 `@pytest.mark.record` 标签,用于标记需要录制测试动图的测试用例。
以下是一个示例:
```python
import pytest
@pytest.mark.record
def test_example():
# 执行测试步骤
assert True
```
在上面的示例中,使用 `@pytest.mark.record` 装饰器将 `test_example` 函数标记为需要录制测试动图的测试用例。
当你运行 pytest 时,`pytest-recording` 插件会检测到这个标签,并在当前目录下生成一个名为 `recording.gif` 的测试动图文件,记录测试执行过程的图像。
请确保已正确安装 `pytest-recording` 插件,并按照先前提到的步骤运行 pytest,以便生成测试动图。
再次对之前的错误回答表示歉意,希望这次提供的信息对你有帮助!
阅读全文