File size: 171 Bytes
4ad296d |
1 2 3 4 5 6 7 |
from locust import HttpUser, task
class HelloWorldUser(HttpUser):
@task
def hello_world(self):
self.client.get("/hello")
self.client.get("/world") |
4ad296d |
1 2 3 4 5 6 7 |
from locust import HttpUser, task
class HelloWorldUser(HttpUser):
@task
def hello_world(self):
self.client.get("/hello")
self.client.get("/world") |