1 Star 5 Fork 1

杭州-伍个一/apiDemo

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
run.py 939 Bytes
一键复制 编辑 原始数据 按行查看 历史
# -*- coding: utf-8 -*
# @author 小测试
# @create 2020-03-03 22:57
import os
from ApiDemo.util.tools.open_ini import Config
def report():
# 定义环境
# 定义报告中environment
conf = Config()
host = conf.host_test
tester = conf.tester_test
versionCode = conf.versionCode_test
data_list = []
data_list.append('{} = {}\n'.format("host", host))
data_list.append('{} = {}\n'.format("tester", tester))
data_list.append('{} = {}\n'.format("versionCode", versionCode))
with open("result/xml/environment.properties", "w", encoding="utf-8") as f:
f.writelines(data_list)
if __name__ == '__main__':
#执行pytest的命令
#全部执行 pytest
#执行冒烟用例 pytest -m smoke
#执行其他用例 pytest -m test
os.system("pytest ")
#allure收集结果 进行展示
report()
os.system("allure generate ./result/xml -o ./result/html --clean")
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/wangyix/api-test.git
git@gitee.com:wangyix/api-test.git
wangyix
api-test
apiDemo
master

搜索帮助