第十六单元 单元测试之pytest

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

pip install pytest 和 pip install pytest-html

一、命名规则

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

import pytest
from xml.dom import minidom
class TestPy01():
    def testPy001(self):
        print("第一个pytest")
        assert 1==1

    def testPy002(self):
        print("第二个pytest")
        assert 1==2

    def testPy003(self):
        print("第三个pytest")
        assert 1 == 1
if __name__ == '__main__':
    pytest.main()

二、Pytest生成自带的html测试报告

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

pip install pytest-html
1 方式一

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

 pytest.main(["--html=./report.html","模块.py"])

代码:

pytest.main(["--html=../report1.html", "test_01.py"])

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

pytest.main([‘--html=./report.html’,‘模块.py::类::test_a_001'])

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

pytest.main(["--html=../report1.html", "test_01.py::TestPy01::testPy001"])

你可能感兴趣的:(第十六单元 单元测试之pytest)