feat: 添加JoyHub运费模板和Banner管理接口用例

This commit is contained in:
2026-05-06 10:54:03 +08:00
parent cc6733a8fb
commit 86f4e8288e
89 changed files with 11557 additions and 3 deletions

14
extract_allure.py Normal file
View File

@@ -0,0 +1,14 @@
# -*- coding: utf-8 -*-
import zipfile
import os
# 解压Allure压缩包
zip_path = r'C:\Users\a\PyCharmMiscProject\smart-management-auto-test\allure.zip'
extract_path = r'C:\Users\a\PyCharmMiscProject\smart-management-auto-test\allure'
try:
with zipfile.ZipFile(zip_path, 'r') as zip_ref:
zip_ref.extractall(extract_path)
print("Allure解压成功")
except Exception as e:
print(f"解压失败: {e}")