Arthur-Wu committed this file on 2024-11-26

This commit is contained in:
ieemoo
2024-11-26 15:07:46 +08:00
parent a18431f788
commit b7a15520d9
31 changed files with 731 additions and 661 deletions

View File

@ -12,4 +12,4 @@ ReportsURL: http://192.168.1.165
# 4-联测测试的商超列表: WuShang\ZhongBai\YongHui\JiajiaYue
MarketsArray:
- ZhongBai
- WuShang

View File

@ -31,13 +31,10 @@ def __data_init():
DataList = []
for fn in ProCfgData["MarketsArray"]:
FP = os.path.join(GlobalPath["YMDataPath"], fn+".yaml").replace("\\", "/")
print(f"---market scene test data file path: {FP}---")
data = yam().read_yaml(FP)
DataList.append(data)
return DataList
DataInit = __data_init()
print(f"---DataInit: {DataInit}")