打开APP
userphoto
未登录

开通VIP,畅享免费电子书等14项超值服

开通VIP
pytest文档 88- pytest-runtime-yoyo 对用例运行时长断言

说明

pytest 执行用例的时候,我们希望对用例的运行时间断言,当用例执行时长大于预期标记此用例失败。
@pytest.mark.runtime(1) 运行时长单位是秒
此插件已打包上传到pypi https://pypi.org/project/pytest-runtime-yoyo/1.0.0/

基本示例 test_demo.py

import pytestimport timedef 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 ===============

联系我们

  • 作者-上海悠悠 微信/QQ交流:283340479

  • blog地址 https://www.cnblogs.com/yoyoketang/

版本变更记录

v1.0.0 发布时间: 2023/6/12

实现功能

  • 1.用例中使用 @pytest.mark.runtime(1) 标记用例执行时间

  • 2.pytest.ini 新增 runtime 全局参数

  • 3.命令行中新增 --runtime 全局参数

Installation / 安装

最近环境体验

  • Python 3.8+ 版本

  • Pytest 7.2.0+ 新版

pip 安装插件

pip install pytest-runtime-yoyo

Usage / 标记用例运行时长

基于函数的用例中使用 @pytest.mark.runtime(1) 标记用例执行时间

import pytestimport time# 作者-上海悠悠 微信/QQ交流:283340479# blog地址 https://www.cnblogs.com/yoyoketang/def test_a1():
time.sleep(2)@pytest.mark.runtime(1)def test_a2():
time.sleep(2)

基于测试类的用例, 在测试类上标记runtime,对测试类下的每个用例都会生效

import pytestimport time@pytest.mark.runtime(3)class TestRun:

def test_a3(self):
time.sleep(2) def test_a4(self):
time.sleep(1)

标记模块下全部用例

对整个测试模块下的用例全部标记 runtime

import pytestimport time# 作者-上海悠悠 微信/QQ交流:283340479# blog地址 https://www.cnblogs.com/yoyoketang/pytestmark = pytest.mark.runtime(3)def test_a5():
time.sleep(1)def test_a6():
time.sleep(2)class TestRun:

def test_a7(self):
time.sleep(2) def test_a8(self):
time.sleep(4)

执行结果

collected 4 items
test_x2.py ...F [100%]

================ FAILURES ===================================
_____________________ TestRun.test_a8 __________________________
================= short test summary info =====================
FAILED test_x2.py::TestRun::test_a8
================= 1 failed, 3 passed in 9.15s =======

如果测试模块,测试类和测试用例上都有runtime 标记

import pytestimport time# 作者-上海悠悠 微信/QQ交流:283340479# blog地址 https://www.cnblogs.com/yoyoketang/pytestmark = pytest.mark.runtime(3)def test_a5():
time.sleep(1)def test_a6():
time.sleep(2)@pytest.mark.runtime(1)class TestRun:

def test_a7(self):
time.sleep(2) @pytest.mark.runtime(5)
def test_a8(self):
time.sleep(4)

那么运行的优先级是: 测试用例 runtime > 测试类 runtime > 测试模块 runtime

全局用例配置

对全部用例设置 runtime 标记,可以在 pytest.ini 中设置全局配置

[pytest]

runtime = 3

也可以在执行 pytest 命令的时候带上命令行参数--runtime

pytest --runtime=3

优先级是: 命令行参数 > pytest.ini 配置
全局配置只针对测试模块,测试类,测试用例没标记 runtime 的用例生效。
如果测试模块,测试类,测试用例有标记 runtime,那么优先级是大于全局配置的。

本站仅提供存储服务,所有内容均由用户发布,如发现有害或侵权内容,请点击举报
打开APP,阅读全文并永久保存 查看更多类似文章
猜你喜欢
类似文章
【热】打开小程序,算一算2024你的财运
pytest文档16-用例a失败,跳过测试用例b和c并标记失败xfail
超详细的 pytest 教程 (三) 之用例标记和测试执行篇
pytest---用例执行参数
pytest入门 -2-分组执行
pytest框架快速入门-pytest运行时参数说明,pytest详解,pytest.ini详解
pytest---fixture中conftest.py文件
更多类似文章 >>
生活服务
热点新闻
分享 收藏 导长图 关注 下载文章
绑定账号成功
后续可登录账号畅享VIP特权!
如果VIP功能使用有故障,
可点击这里联系客服!

联系客服