diff options
author | Bartek Grzybowski <b.grzybowski@partner.samsung.com> | 2020-03-05 10:28:03 +0100 |
---|---|---|
committer | Marco Platania <platania@research.att.com> | 2020-03-05 15:26:40 +0000 |
commit | 3d3d3c28d88d1f7bad2b9a274fe9ad4cfaf01554 (patch) | |
tree | 2f33b3f16289d8555173f011737d611515e7541b /test/s3p | |
parent | 5d8a1df2dbfd99fa87e792c584ac220187c9928e (diff) |
Fix indentation and whitespace issues in Python scripts
Reported by pylint.
Change-Id: I9d5ee152f3587bb2d7e8abee919e4ffe47d8ae85
Issue-ID: INT-1427
Signed-off-by: Bartek Grzybowski <b.grzybowski@partner.samsung.com>
Diffstat (limited to 'test/s3p')
-rwxr-xr-x | test/s3p/collector/get_resource_stats.py | 6 | ||||
-rw-r--r-- | test/s3p/generator/locustfile.py | 4 |
2 files changed, 5 insertions, 5 deletions
diff --git a/test/s3p/collector/get_resource_stats.py b/test/s3p/collector/get_resource_stats.py index 8ad22c575..aca2514c8 100755 --- a/test/s3p/collector/get_resource_stats.py +++ b/test/s3p/collector/get_resource_stats.py @@ -20,7 +20,7 @@ AAI2_IP = "10.0.1.2" SO_IP = "10.0.5.1" SDNC_IP = "10.0.7.1" -def aai1(): +def aai1(): containers = docker_util.get_container_list(AAI1_IP) run(AAI1_NAME, AAI1_IP, containers) @@ -39,7 +39,7 @@ def sdnc(): def run(component, ip, containers): cmd = ["ssh", "-i", "onap_dev"] cmd.append("ubuntu@" + ip) - cmd.append("sudo docker stats --no-stream") + cmd.append("sudo docker stats --no-stream") for c in containers: cmd.append(c) ssh = subprocess.Popen(cmd, shell=False, stdout=subprocess.PIPE, stderr=subprocess.PIPE) @@ -80,7 +80,7 @@ def get_memory_number(s): return f file = open("resource.log", "w+") -while True: +while True: so() sdnc() aai1() diff --git a/test/s3p/generator/locustfile.py b/test/s3p/generator/locustfile.py index 63031cd78..ca926b3c2 100644 --- a/test/s3p/generator/locustfile.py +++ b/test/s3p/generator/locustfile.py @@ -26,7 +26,7 @@ class UserBehavior(TaskSet): self.init() def init(self): - pass + pass def myconverter(self, o): if isinstance(o, datetime.datetime): @@ -36,7 +36,7 @@ class UserBehavior(TaskSet): def create_service(self): # Post a E2E service instantiation request to SO method = "POST" - url = self.base + url = self.base service_instance_name = ''.join(random.choice(string.ascii_uppercase + string.digits) for _ in range(10)) data = self.service_creation_body % service_instance_name |