diff options
Diffstat (limited to 'S3Ptools')
-rw-r--r-- | S3Ptools/locustfile.py | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/S3Ptools/locustfile.py b/S3Ptools/locustfile.py index 5fe5b3786..91cd49974 100644 --- a/S3Ptools/locustfile.py +++ b/S3Ptools/locustfile.py @@ -1,15 +1,15 @@ import random import string from locust import HttpLocust, TaskSet, task - + class UserBehavior(TaskSet): def on_start(self): """ on_start is called when a Locust start before any task is scheduled """ self.init() - + def init(self): pass - + @task(1) def DCI(self): method = "POST" @@ -20,7 +20,7 @@ class UserBehavior(TaskSet): print(data) response = self.client.request(method, url, headers=headers, data=data) print(response.json()) - + class WebsiteUser(HttpLocust): task_set = UserBehavior host = "http://10.0.5.1:8080" |