This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Author [email protected] | |
# This load test for example | |
# Scope on load test at wikipedia | |
import time | |
from locust import HttpUser, TaskSet, task, between | |
class SubClassTest(TaskSet): | |
@task |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Author [email protected] | |
# This load test for example | |
# Scope on load test at https://api.apiary.io | |
import time | |
from locust import HttpUser, TaskSet, task, between | |
import json | |
class SubClassTestAppAPI(TaskSet): |