mirror of
https://github.com/Telecominfraproject/wlan-lanforge-scripts.git
synced 2025-11-19 03:25:05 +00:00
lf_qa.py : update path for meta.txt when reading test-tag for Test Suite and
Suite summary Signed-off-by: Chuck SmileyRekiere <chuck.smileyrekiere@candelatech.com>
This commit is contained in:
@@ -117,11 +117,12 @@ class csv_sqlite_dash():
|
|||||||
#if test_tag still NA then try meta file
|
#if test_tag still NA then try meta file
|
||||||
try:
|
try:
|
||||||
if test_tag == "NA":
|
if test_tag == "NA":
|
||||||
use_meta_test_tag, test_tag = self.get_test_tag_from_meta(_kpi_path)
|
_meta_path = _kpi_path.replace('kpi.csv','meta.txt')
|
||||||
|
use_meta_test_tag, test_tag = self.get_test_tag_from_meta(_meta_path)
|
||||||
except:
|
except:
|
||||||
print("exception reading meta.txt _kpi_path: {kpi_path}".format(kpi_path=_kpi_path))
|
print("exception reading meta.txt _meta_path: {meta_path}".format(meta_path=_meta_path))
|
||||||
if use_meta_test_tag:
|
if use_meta_test_tag:
|
||||||
print("test_tag from meta.txt _kpi_path: {kpi_path}".format(kpi_path=_kpi_path))
|
print("test_tag from meta.txt _meta_path: {meta_path}".format(meta_path=_meta_path))
|
||||||
return test_id , test_tag
|
return test_id , test_tag
|
||||||
|
|
||||||
# could enter on the command line, except there may be other exceptions
|
# could enter on the command line, except there may be other exceptions
|
||||||
|
|||||||
Reference in New Issue
Block a user