From 874e2076e4f212b9eda50cf392e197a7401af298 Mon Sep 17 00:00:00 2001 From: dongjiao Date: Tue, 27 Aug 2024 19:28:26 +0800 Subject: [PATCH] add netinfo report --- kyreport/ky_report.py | 3 +++ 1 file changed, 3 insertions(+) diff --git a/kyreport/ky_report.py b/kyreport/ky_report.py index 1769adb..26f766f 100644 --- a/kyreport/ky_report.py +++ b/kyreport/ky_report.py @@ -73,3 +73,6 @@ class KyReport: info['synthesis_info'] = DATACOLLECTION().get_synthesis_tag_data() if os.path.exists(Config.get_output_path() + 'memInfo.txt'): info['mem_info'] = self.build_info(Config.get_output_path() + 'memInfo.txt') + if os.path.exists(Config.get_output_path() + 'netInfo.txt'): + info['net_info'] = self.build_info(Config.get_output_path() + 'netInfo.txt') + -- Gitee