1
0
mirror of https://github.com/ARM-software/workload-automation.git synced 2025-04-21 02:00:49 +01:00

speedometer: address pylint complaints

This commit is contained in:
Stephen Kyle 2021-04-07 17:28:19 +01:00 committed by Marc Bonnici
parent f08770884a
commit 72298ff9ac

View File

@ -155,7 +155,7 @@ class Speedometer(Workload):
tarball = context.get_resource(File(self, "speedometer_archive.tgz")) tarball = context.get_resource(File(self, "speedometer_archive.tgz"))
with tarfile.open(name=tarball) as handle: with tarfile.open(name=tarball) as handle:
handle.extractall(self.temp_dir.name) handle.extractall(self.temp_dir.name)
self.archive_server.start(self.document_root, self.target) self.archive_server.start(self.document_root)
Speedometer.speedometer_url = "http://localhost:{}/Speedometer2.0/index.html".format( Speedometer.speedometer_url = "http://localhost:{}/Speedometer2.0/index.html".format(
self.archive_server.get_port() self.archive_server.get_port()
@ -375,7 +375,7 @@ class Speedometer(Workload):
super(Speedometer, self).finalize(context) super(Speedometer, self).finalize(context)
# Shutdown the locally hosted version of Speedometer # Shutdown the locally hosted version of Speedometer
self.archive_server.stop(self.target) self.archive_server.stop()
class ArchiveServerThread(threading.Thread): class ArchiveServerThread(threading.Thread):
@ -411,7 +411,7 @@ class ArchiveServer(object):
def __init__(self): def __init__(self):
self._port = None self._port = None
def start(self, document_root, target): def start(self, document_root):
# Create the server, and find out the port we've been assigned... # Create the server, and find out the port we've been assigned...
self._httpd = HTTPServer(("", 0), DifferentDirectoryHTTPRequestHandler) self._httpd = HTTPServer(("", 0), DifferentDirectoryHTTPRequestHandler)
# (This property is expected to be read by the # (This property is expected to be read by the
@ -422,7 +422,7 @@ class ArchiveServer(object):
self._thread = ArchiveServerThread(self._httpd) self._thread = ArchiveServerThread(self._httpd)
self._thread.start() self._thread.start()
def stop(self, target): def stop(self):
self._httpd.shutdown() self._httpd.shutdown()
self._thread.join() self._thread.join()