Files
swingmusic-extended/locustfile.py
T
mungai-njoroge b7e86ed79b add time ago on recent items
+ move to waitress wsgi server
+ refactor dates utils
+ create locustfile for stress test
2024-02-11 21:10:52 +03:00

9 lines
230 B
Python

from locust import HttpUser, task
class HelloWorldUser(HttpUser):
host = "http://localhost:1980"
@task
def hello_world(self):
self.client.get("/getall/artists?start=0&limit=50&sortby=created_date&reverse=1")