代码拉取完成,页面将自动刷新
# -*- coding: utf-8 -*-
import unittest
import os
from BeautifulReport import BeautifulReport
DIR = os.path.dirname(os.path.abspath(__file__))
ENVIRON = 'prd' # dev-开发环境 test-测试环境 prd-生产环境
if __name__ == '__main__':
run_pattern = 'all'
if run_pattern == 'all': # all-全量用例执行 / smoking-冒烟用例执行 / 指定执行文件
pattern = 'test*.py'
elif run_pattern == 'smoking':
pattern = 'test_major*.py'
else:
pattern = run_pattern + '.py'
suite = unittest.TestLoader().discover('./testcase', 'test*.py')
result = BeautifulReport(suite)
result.report(filename='reports.html', description='测试报告', report_dir='./')
# runner = unittest.TextTestRunner()
# runner.run(suite)
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。