资源简介
HTMLTestRunner.py现已支持python3,用于生成自动化测试报告,下载后将包拖到python3的安装目录的Lib目录下即可
代码片段和文件信息
“““
A TestRunner for use with the Python unit testing framework. It
generates a HTML report to show the result at a glance.
The simplest way to use this is to invoke its main method. E.g.
import unittest
import HTMLTestRunner
... define your tests ...
if __name__ == ‘__main__‘:
HTMLTestRunner.main()
For more customization options instantiates a HTMLTestRunner object.
HTMLTestRunner is a counterpart to unittest‘s TextTestRunner. E.g.
# output to a file
fp = file(‘my_report.html‘ ‘wb‘)
runner = HTMLTestRunner.HTMLTestRunner(
stream=fp
title=‘My unit test‘
description=‘This demonstrates the report output by HTMLTestRunner.‘
)
# Use an external styleshee
相关资源
- python 实现定时关机(windowspython3)
- python3爬虫采集淘宝商品数据
- Python3程序开发指南.第二版(带书签)
- Python3.x+ django2.x 在线教育系统源码
- python3+django实现学生信息管理系统
- python实现ftp远程文件(亲测通过)
- 基于python3.5和Django2.0的博客系统源码
- 《深入Python3》pdf
- 《Python3 萌新入门笔记》pdf 高清版
- python3程序设计课后练习(参考答案)
- Python3.5 获取海康威视代码
- python3.5从零开始学
- python3调用win32com查找替换ppt文字
- python3 网站图片爬虫
- python-win-votesmart
- 盲水印python3.zip
- Python3.6实现delaunay三角剖分算法不规则
- python3.7 requests模拟新浪微博登录
- python3实现ATM机功能
- py2exe(python2.7/python3.3/python3.4)
- mod_wsgi-4.4.23+ap24vc14-cp35-cp35m-win_amd64.
- python3.6文字转语音
- python项目练习-python3实现web服务器
- kmeans上手代码
- fasterRCNN python36
- HTMLTestRunner中文版Python3.X
- 摄像机实时捕捉人脸+本地图片识别
- 官网python3.5.2中内置的python3.dll
- python3.7.2下多个txt文件合并去重
- python3-tkinter官方文档
评论
共有 条评论