kpi_csv_sq.py : variable name fix from index to kpi

lf_qa.py : initial check in , save static results

Signed-off-by: Chuck SmileyRekiere <chuck.smileyrekiere@candelatech.com>
This commit is contained in:
Chuck SmileyRekiere
2021-08-08 18:26:55 -06:00
parent e1af7892e5
commit bdb8d23c8c
2 changed files with 361 additions and 3 deletions

View File

@@ -152,11 +152,11 @@ class csv_sqlite_dash():
self.children_div.append(html.Br())
# link to interactive results
index_html_path = self.server + kpi_path_list[-1] + "kpi.html"
index_html_path = index_html_path.replace('/home/lanforge/','')
kpi_html_path = self.server + kpi_path_list[-1] + "kpi.html"
kpi_html_path = kpi_html_path.replace('/home/lanforge/','')
self.children_div.append(html.Br())
self.children_div.append(html.A('{}_{}_{}_{}_kpi.html'.format(test_id_list[-1], group, test_tag, test_rig),
href=index_html_path, target='_blank'))
href=kpi_html_path, target='_blank'))
# link to full test results
index_html_path = self.server + kpi_path_list[-1] + "index.html"