命名规则
运行于测试方法的始末,即:运行一次测试函数会运行一次setup和teardown
运行于测试方法的始末,但是不管有多少测试函数都只执行一次setup_class和 teardown_class
Pytest生成自带的html测试报告
下载pytest-html模板:
pip install pytest-html
案例一 pytest.main("模块.py")【运行指定模块下,运行所有test开头的类和测试用例】
pytest.main(["--html=./report.html","模块.py"])
案例二 运行指定模块指定类指定用例,冒号分割,并生成测试报告
pytest.main([‘--html=./report.html’,‘模块.py::类::test_a_001'])
案例三 直接执行pytest.main() 【自动查找当前目录下,以test开头的文件或者以test结尾的py文件】
pytest.main([‘--html=./report.html’])
Pytest调用语句
pytst.main(['-x','--html=./report.html','t12est000.py'])
-x出现一条测试用例失败就退出测试 -s:显示print内容
@pytest.mark.skip()
def test001(self):
assert 2==2
Py