代码拉取完成,页面将自动刷新
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()
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。