mirror of
https://github.com/Telecominfraproject/wlan-lanforge-scripts.git
synced 2025-11-01 11:18:03 +00:00
Revert "importlib refactor test_l3_longevity.py"
This reverts commit 3b81071aa7.
This commit is contained in:
@@ -44,35 +44,34 @@ COPYRIGHT:
|
|||||||
Copyright 2021 Candela Technologies Inc
|
Copyright 2021 Candela Technologies Inc
|
||||||
|
|
||||||
INCLUDE_IN_README
|
INCLUDE_IN_README
|
||||||
|
|
||||||
'''
|
'''
|
||||||
|
|
||||||
|
|
||||||
import sys
|
import sys
|
||||||
import os
|
import os
|
||||||
import importlib
|
|
||||||
from pprint import pprint
|
|
||||||
import serial
|
|
||||||
import pexpect
|
|
||||||
from pexpect_serial import SerialSpawn
|
|
||||||
import argparse
|
|
||||||
import time
|
|
||||||
import datetime
|
|
||||||
import csv
|
|
||||||
|
|
||||||
if sys.version_info[0] != 3:
|
if sys.version_info[0] != 3:
|
||||||
print("This script requires Python 3")
|
print("This script requires Python 3")
|
||||||
exit(1)
|
exit(1)
|
||||||
|
|
||||||
if 'lanforge-scripts' not in sys.path:
|
if 'py-json' not in sys.path:
|
||||||
sys.path.append(os.path.join(os.path.abspath(__file__ + "../../../")))
|
sys.path.append(os.path.join(os.path.abspath('..'), 'py-json'))
|
||||||
|
if 'py-dashboard' not in sys.path:
|
||||||
|
sys.path.append(os.path.join(os.path.abspath('..'), 'py-dashboard'))
|
||||||
|
|
||||||
|
from pprint import pprint
|
||||||
from InfluxRequest import *
|
from InfluxRequest import *
|
||||||
InfluxRequest = importlib.import_module("lanforge-scripts.py-dashboard.InfluxRequest")
|
import serial
|
||||||
from LANforge import LFUtils
|
import pexpect
|
||||||
LFUtils = importlib.import_module("lanforge-scripts.py-json.LANforge.LFUtils")
|
from pexpect_serial import SerialSpawn
|
||||||
from realm import Realm
|
|
||||||
realm = importlib.import_module("lanforge-scripts.py-json.realm")
|
|
||||||
Realm = realm.Realm
|
|
||||||
from lf_report import lf_report
|
from lf_report import lf_report
|
||||||
lf_report = importlib.import_module("lanforge-scripts.py-scripts.lf_report")
|
import argparse
|
||||||
|
from LANforge import LFUtils
|
||||||
|
from realm import Realm
|
||||||
|
import time
|
||||||
|
import datetime
|
||||||
|
import csv
|
||||||
|
|
||||||
# This class handles running the test and generating reports.
|
# This class handles running the test and generating reports.
|
||||||
class L3VariableTime(Realm):
|
class L3VariableTime(Realm):
|
||||||
|
|||||||
Reference in New Issue
Block a user