Revert "Update py_scripts to be in line with pip standards"

This reverts commit 37df48594e.
This commit is contained in:
Chuck SmileyRekiere
2021-09-09 05:32:05 -06:00
parent 5328154e21
commit 743b5f56c9
31 changed files with 235 additions and 260 deletions

View File

@@ -15,10 +15,12 @@ if 'py-json' not in sys.path:
from LANforge import LFUtils
from LANforge.lfcli_base import LFCliBase
from LANforge.LFUtils import *
from realm import Realm, PortUtils
import realm
import argparse
import datetime
from datetime import datetime
import time
import os
import matplotlib.patches as mpatches
from lf_report import *
from lf_graph import *
@@ -50,10 +52,10 @@ class FtpTest(LFCliBase):
self.duration = duration
self.traffic_duration = traffic_duration
self.ssh_port = ssh_port
self.local_realm = Realm(lfclient_host=self.host, lfclient_port=self.port)
self.local_realm = realm.Realm(lfclient_host=self.host, lfclient_port=self.port)
self.station_profile = self.local_realm.new_station_profile()
self.cx_profile = self.local_realm.new_http_profile()
self.port_util = PortUtils(self.local_realm)
self.port_util = realm.PortUtils(self.local_realm)
self.cx_profile.requests_per_ten = self.requests_per_ten
print("Test is Initialized")