html 中单元测试,Python 单元测试 - HTML report

unittest 报告

HTMLReport是一个单元测试测试运行器,可以将测试结果保存在 Html 文件中,用于人性化的结果显示,仅支持Python 3.x。

安装命令pip install HTMLReport

1. 执行命令

import unittest

import HTMLReport

# 测试套件

suite = unittest.TestSuite()

# 测试用例加载器

loader = unittest.TestLoader()

# 把测试用例加载到测试套件中

suite.addTests(loader.loadTestsFromTestCase(TestStringMethods))

# 测试用例执行器

runner = HTMLReport.TestRunner(report_file_name='test', # 报告文件名,如果未赋值,将采用“test+时间戳”

output_path='report', # 保存文件夹名,默认“report”

title='测试报告', # 报告标题,默认“测试报告”

description='无测试描述', # 报告描述,默认“测试描述”

thread_count=1, # 并发线程数量(无序执行测试),默认数量 1

thread_start_wait=3, # 各线程启动延迟,默认 0 s

sequential_execution=False, # 是否按照套件添加(addTests)顺序执行,

# 会等待一个addTests执行完成,再执行下一个,默认 False

# 如果用例中存在 tearDownClass ,建议设置为True,

# 否则 tearDownClass 将会在所有用例线程执行完后才会执行。

# lang='en'

lang='cn' # 支持中文与英文,默认中文

)

# 执行测试用例套件

runner.run(suite)

2. 执报告格式

74654edb5011?utm_campaign=maleskine&utm_content=note&utm_medium=seo_notes&utm_source=recommendation

pytest 报告

生成报告,需要安装第三方库pytest-HTML。安装命令pip install pytest-html

1. 执行命令

$ pytest --html=report.html

执行上述命令, 会在当前目录下生成report报告, 当然可以指定报告名称和报告路径。例如: pytest --html=/workspace/log.html。

2. CSS渲染

直接打开report的时候会出现奇怪的现象, report排版看起来很糟糕,很不友善,是因为没有css渲染。执行下面命令即可。

$ pytest --html=report.html --self-contained-html

74654edb5011?utm_campaign=maleskine&utm_content=note&utm_medium=seo_notes&utm_source=recommendation

report

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值