执行用例
Posted minghong
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了执行用例相关的知识,希望对你有一定的参考价值。
import sys
sys.path.append(‘./‘) #获取project 根目录,jenkits执行需要
print(sys.path)
import htmlTestRunnerNew
import unittest
from week_9.common import contants
discover = unittest.defaultTestLoader.discover(contants.case_dir, pattern=‘test*.py‘)
with open(contants.reports_html+‘/test3.html‘, ‘wb+‘) as files:
runner = HTMLTestRunnerNew.HTMLTestRunner(
stream=files,
verbosity=1,
title=‘20190519py15测试报告‘,
description=‘webservice借口测试报告‘,
tester=‘冥鴻‘)
runner.run(discover)
以上是关于执行用例的主要内容,如果未能解决你的问题,请参考以下文章