Skip to content

Instantly share code, notes, and snippets.

@tnachen
Last active April 8, 2017 21:06
Show Gist options
  • Save tnachen/e6fb872c08a3dbcb9411149ee78b1531 to your computer and use it in GitHub Desktop.
Save tnachen/e6fb872c08a3dbcb9411149ee78b1531 to your computer and use it in GitHub Desktop.
exmaple locust file
from locust import HttpLocust, TaskSet, task
class UserBehavior(TaskSet)
@task
def index(self):
self.client.get("/index.html")
class WebsiteUser(HttpLocust):
task_set = UserBehavior
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment