1 Star 0 Fork 0

良月十四/apiAtot

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
runMain.py 793 Bytes
一键复制 编辑 原始数据 按行查看 历史
良月十四 提交于 2021-11-05 15:51 . Initial commit
# -*- coding: utf-8 -*-
# @Time :2021/10/27 12:18
# @Author : master
# @Software : PyCharm
import unittest
import HTMLTestRunnerNew
from test_case.test_http_request import TestHttpRequest
from tools.project_path import *
suite = unittest.TestSuite()
# suite.addTest(TestHttpRequest('test_api')) # 测试类的实例
loader = unittest.TestLoader()
suite.addTest(loader.loadTestsFromTestCase(TestHttpRequest))
with open(test_report_path, 'wb') as file:
# 执行用例
runner = HTMLTestRunnerNew.HTMLTestRunner(stream=file,
title='这个是单元测试报告14',
description='这个是单元测试报告14',
)
runner.run(suite)
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/zhou-xin9468/apiAtot.git
git@gitee.com:zhou-xin9468/apiAtot.git
zhou-xin9468
apiAtot
apiAtot
master

搜索帮助