加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
run.py 1004 Bytes
一键复制 编辑 原始数据 按行查看 历史
codeQ 提交于 2024-07-21 10:36 . 修改总allure报告
import os
import subprocess
import shutil
import pytest
def copy_environment_xml():
source = './environment.xml'
destination = './allure-results/environment.xml'
# 确保目标目录存在
os.makedirs(os.path.dirname(destination), exist_ok=True)
# 复制文件
shutil.copyfile(source, destination)
def run_tests():
# 删除旧的 Allure 结果目录
if os.path.exists('./allure-results'):
shutil.rmtree('./allure-results')
# 创建新的 Allure 结果目录
os.makedirs('./allure-results', exist_ok=True)
# 复制 environment.xml 文件
copy_environment_xml()
# 运行 pytest 并生成 Allure 结果
pytest.main(['--junitxml=./report/results.xml'])
# 生成 Allure 报告
subprocess.run(['allure', 'generate', './allure-results', '-o', './allure-report', '--clean'], shell=True)
# 打开 Allure 报告
subprocess.run(['allure', 'open', './allure-report'], shell=True)
if __name__ == '__main__':
run_tests()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化