前言
pytest 执行用例的时候,我们希望对用例的运行时间断言,当用例执行时长大于预期标记此用例失败。@pytest.mark.runtime(1)
运行时长单位是秒
此插件已打包上传到pypi https://pypi.org/project/pytest-runtime-yoyo/1.0.0/
环境准备
pip install pytest-yaml-yoyo
此功能在v1.3.1 版本上实现
代码中实现
基本示例 test_demo.py
import pytest
import time
def test_a1():
time.sleep(2)
@pytest.mark.runtime(1)
def test_a2():
time.sleep(2)
运行结果
======================== short test summary info =====================
FAILED test_demo.py::test_a2
======================== 1 failed, 1 passed in 4.18s ===============
在 yaml 用例中实现
在yaml 中添加 runtime
config:
name: yy
test_a1:
name: a11
mark: runtime(1)
sleep: 2
print: "xx111"
test_a2:
name: a22
sleep: 2
print: "xx22"
也可以在config 中添加runtime 对整个yaml 中的用例标记
config:
name: yy
mark: runtime(1)
test_a1:
name: a11
sleep: 2
print: "xx111"
test_a2:
name: a22
sleep: 2
print: "xx22"
如果config 中和用例中都有runtime ,那么用例的runtime优先级>config 中的runtime
全局用例配置
对全部用例设置 runtime 标记,可以在 pytest.ini
中设置全局配置
[pytest]
runtime = 3
也可以在执行 pytest 命令的时候带上命令行参数--runtime
pytest --runtime=3
优先级是: 命令行参数 > pytest.ini 配置
全局配置只针对yaml 中config,测试用例没标记 runtime 的用例生效。
如果yaml 中config,测试用例有标记 runtime,那么优先级是大于全局配置的。
服务器托管,北京服务器托管,服务器租用 http://www.fwqtg.net
机房租用,北京机房租用,IDC机房托管, http://www.fwqtg.net
相关推荐: SignalR+Hangfire 实现后台任务队列和实时通讯
SignalR+Hangfire 实现后台任务队列和实时通讯 1.简介: SignalR是一个.NET的开源框架,SignalR可使用Web Socket, Server Sent Events 和 Long Polling作为底层传输方式实现服务端和客户端的…