其他分享
首页 > 其他分享> > pytest系列——美化插件进度条pytest-sugar

pytest系列——美化插件进度条pytest-sugar

作者:互联网

前言

在我们进行自动化测试的时候,用例往往是成百上千,执行的时间是几十分钟或者是小时级别。有时,我们在调试那么多用例的时候,不知道执行到什么程度了,而pytest-sugar插件能很好解决我们的痛点。

安装

pip3 install pytest-sugar

实例

def test_s1():
    print("用例 11:登录之后其它动作 111")


def test_s2():
    print("用例 22:登录之后其它动作 222")


def test_s3():
    print("用例 33:登录之后其它动作 333")

执行命令 pytest -s

①没有装插件之前

image

②装插件之后

image

对比区别

标签:插件,进度条,sugar,用例,pytest,test
来源: https://www.cnblogs.com/guanqibuyu/p/16624647.html