lf_tx_power.py : initial development to have lf_tx_power.py us lf_report and

lf_kpi_csv libraries to place the results in the correct directories when
running lf_check.py to do batches.
lf_check.py : initial import lf_kpi_csv.py to lf_check to have historical
statistics for QA test runs.
This commit is contained in:
Chuck SmileyRekiere
2022-03-06 11:02:49 -07:00
committed by shivam
parent 0d5f4e9e47
commit 10c8c501dc
2 changed files with 137 additions and 65 deletions

View File

@@ -116,10 +116,12 @@ if sys.version_info[0] != 3:
sys.path.append(os.path.join(os.path.abspath(__file__ + "../../../")))
lf_report = importlib.import_module("lf_report")
lf_kpi_csv = importlib.import_module("lf_kpi_csv")
logger = logging.getLogger(__name__)
lf_logger_config = importlib.import_module("lf_logger_config")
# lf_report is from the parent of the current file
dir_path = os.path.dirname(os.path.realpath(__file__))
parent_dir_path = os.path.abspath(os.path.join(dir_path, os.pardir))
@@ -1382,6 +1384,7 @@ note if all json data (rig,dut,tests) in same json file pass same json in for a
logger_config.load_lf_logger_config()
# load test config file information either <config>.json
json_rig = ""
try: