importlib refactor lf_wifi_capacity_test.py

This commit is contained in:
erinnerim
2021-09-10 15:33:45 -07:00
parent 198280d41f
commit 1285f3207c

View File

@@ -303,9 +303,9 @@ show_4way: 1
show_latency: 1 show_latency: 1
""" """
import sys import sys
import os import os
import importlib
import argparse import argparse
import time import time
import json import json
@@ -315,11 +315,14 @@ if sys.version_info[0] != 3:
print("This script requires Python 3") print("This script requires Python 3")
exit(1) exit(1)
if 'py-json' not in sys.path: if 'lanforge-scripts' not in sys.path:
sys.path.append(os.path.join(os.path.abspath('..'), 'py-json')) sys.path.append(os.path.join(os.path.abspath(__file__ + "../../../../")))
from cv_test_manager import * LFUtils = importlib.import_module("lanforge-scripts.py-json.LANforge.LFUtils")
from LANforge import LFUtils cv_test_manager = importlib.import_module("lanforge-scripts.py-json.cv_test_manager")
cv_test = cv_test_manager.cv_test
cv_add_base_parser = cv_test_manager.cv_add_base_parser
cv_base_adjust_parser = cv_test_manager.cv_base_adjust_parser
class WiFiCapacityTest(cv_test): class WiFiCapacityTest(cv_test):