From c7fc1a99a79f8bcfcdc18890ae324d5177c0f868 Mon Sep 17 00:00:00 2001 From: lixiaoyong1 Date: Fri, 30 Aug 2024 18:08:14 +0800 Subject: [PATCH] Add system parameter info for report --- kyreport/ky_report.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/kyreport/ky_report.py b/kyreport/ky_report.py index 5d98943..6fd11c2 100644 --- a/kyreport/ky_report.py +++ b/kyreport/ky_report.py @@ -79,4 +79,6 @@ class KyReport: info['io_info'] = self.build_info(Config.get_output_path() + 'diskInfo.txt') if os.path.exists(Config.get_output_path() + 'CPUInfo.txt'): info['synthesis_info'] = DATACOLLECTION().get_synthesis_tag_data() + if os.path.exists(Config.get_output_path() + 'sysParamInfo.txt'): + info['sys_param'] = self.build_info(Config.get_output_path() + 'sysParamInfo.txt') -- Gitee