python单元测试之pytest

前提:需要安装pytest和pytest-html(生成html测试报告)

pip install pytest 和 pip install pytest-html

1:命名规则

Pytest单元测试中的类名和方法名必须是以test开头,执行中只能找到test开头的类和方法,比unittest更加严谨

unittest:Setup>> setupclass , teardown >> teardownclass(课堂作业)

Pytest: setup, setup_class和teardown, teardown_class函数(和unittest执行效果一样)

运行于测试方法的始末,即:运行一次测试函数会运行一次setup和teardown

运行于测试方法的始末,但是不管有多少测试函数都只执行一次setup_class和 teardown_class

2:Pytest生成自带的html测试报告

前提条件:需要下载pytest-html模块(python自带的生成测试报告模块)

pip install pytest-html

案例一

pytest.main(“模块.py”)【运行指定模块下,运行所有test开头的类和测试用例】

import pytest
class TestClass:
    def setup(self):
        print("setup")
    def test01(self):
        print("test01")
    def test02(self):
        print("test02")
    def teardown(self):
        print("teardown")
if __name__ == '__main__':
    pytest.main(["--html=./report.html","test_01.py"])

在这里插入图片描述案例二

运行指定模块指定类指定用例,冒号分割,并生成测试报告

import pytest
class TestClass:
    def setup(self):
        print("setup")
    def test01(self):
        print("test01")
    def test02(self):
        print("test02")
    def test03(self):
        print("test03")
    def teardown(self):
        print("teardown")
if __name__ == '__main__':
    pytest.main(["--html=./report.html", "test_02.py::TestClass::test01"])

在这里插入图片描述案例三

直接执行pytest.main() 【自动查找当前目录下,以test_开头的文件或者以_test结尾的py文件】

import pytest
class TestClass:
    def setup(self):
        print("setup")
    def test01(self):
        print("test01")
    def test02(self):
        print("test02")
    def teardown(self):
        print("teardown")
if __name__ == '__main__':
    pytest.main(["--html=./report.html"])

在这里插入图片描述Pytest调用语句

-x出现一条测试用例失败就退出测试
-s:显示print内容

pytst.main([’-x’,’–html=./report.html’,‘t12est000.py’])
pytest.main(["-s","–html=./report.html", “test_02.py”])
在这里插入图片描述在这里插入图片描述
使用@pytest.mark.skip()跳过该用例(函数)

 @pytest.mark.skip()
    def 
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值