单元测试:pytest+allure 使用的简单教程
pytest
命名规则
Pytest单元测试中的类名和方法名必须是以test开头,执行中只能找到test开头的类和方法,比unittest更加严谨
Pytest的setup, setup_class和teardown, teardown_class函数(和unittest执行效果一样)
运行于测试方法的始末,即:运行一次测试函数会运行一次setup和teardown
运行于测试方法的始末,但是不管有多少测试函数都只执行一次setup_class和 teardown_class
Pytest生成自带的html测试报告
直接执行pytest.main()
【自动查找当前目录下,以test_开头的文件或者以_test结尾的py文件】(课堂练习_test)
pytest.main(“模块.py”)
【运行指定模块下,运行所有test开头的类和测试用例】
pip install pytest-html() :python自带的插件
pytest.main([“–html=./report.html”,”test3.py”])
pytest.main([“–html=./report.html”,”test3.py”])
Pytest调用语句
pytest.main([‘–html=./report.html’,‘模块.py::类::test_a_001″])
运行指定模块指定类指定用例,冒号分割,并生成测试报告