python代码覆盖率测试_unittest+coverage单元测试代码覆盖操作实例详解_python

这篇文章主要为大家详细介绍了unittest+coverage单元测试代码覆盖操作的实例,具有一定的参考价值,感兴趣的小伙伴们可以参考一下

基于上一篇文章,这篇文章是关于使用coverage来实现代码覆盖的操作实例,源代码在上一篇已经给出相应链接。

本篇文章字用来实现代码覆盖的源代码,整个项目的测试框架如下:

8efd2d992a93ab92772cd2bea09020a9-0.png

就是在源代码的基础上加了一个CodeCover.py文件,执行该文件会在目录CoverageReport生成相应的覆盖报告。如下是CodeCover.py的源码:

#coding=utf8

import os

import time

def findTestWithPath():

current_dir=os.getcwd()

folderName=os.listdir(current_dir)

#print folderName

#获取到测试文件所在目录

TestSuit=[suite for suite in folderName if not suite.find("TestSuit")]

#用来保存测试文件

testfile=[]

withPathFile=[]

for suite in TestSuit:

#获取测试目录下的所有测试文件

testfile=testfile+os.listdir(".\\"+suite)

for withPath in testfile:

withPath=current_dir+"\\"+suite+"\\"+withPath

withPathFile.append(withPath)

del testfile

#把testfile中的py文件挑选出来

withPathFile=[name for name in withPathFile if not "pyc" in name]

#print testfile

print withPathFile

return withPathFile

def codeCoverage():

now = time.strftime("%Y%m%d%H%M")

htmlReport=os.getcwd()+"\\"+"CoverageReport"

htmlCmd="coverage html -d " + htmlReport +"\\"+now

for pyfile in findTestWithPath():

runPyCmd="coverage run " + pyfile

if os.path.exists(htmlReport) :

os.system(runPyCmd)

os.system(htmlCmd)

else:

os.mkdir(htmlReport)

os.system(runPyCmd)

os.system(htmlCmd)

if __name__=="__main__":

codeCoverage()

运行结果图:

8efd2d992a93ab92772cd2bea09020a9-1.png

相关推荐:

以上就是unittest+coverage单元测试代码覆盖操作实例详解_python的详细内容,更多请关注php中文网其它相关文章!

article_wechat2021.jpg?1111

本文原创发布php中文网,转载请注明出处,感谢您的尊重!

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值