“Pytest”的版本间的差异

来自tomtalk
跳转至: 导航搜索
如何编写pytest测试样例
Tom讨论 | 贡献
运行模式
第11行: 第11行:
  
 
<source lang="bash">
 
<source lang="bash">
 +
 +
# 1.运行后生成测试报告(htmlReport)
 +
pip install -U pytest-html
 +
pytest --html=report.html
  
 
</source>
 
</source>

2019年6月25日 (二) 09:07的版本

如何编写pytest测试样例

编写pytest测试样例非常简单,只需要按照下面的规则:

  • 测试文件以test_开头(以_test结尾也可以)
  • 测试类以Test开头,并且不能带有 init 方法
  • 测试函数以test_开头
  • 断言使用基本的assert即可

运行模式

# 1.运行后生成测试报告(htmlReport)
pip install -U pytest-html
pytest --html=report.html