摘要:
locust 多任务执行,task() 括号里的数值越大,执行频率越高 代码如下: from locust import HttpUser, TaskSet, task,osclass MyTask(TaskSet): @task(1) def get_weather(self): response 阅读全文
摘要:
locust 上传文件性能测试: 代码示例: from locust import HttpUser, TaskSet, task, osimport jsonclass MyTask(TaskSet): @task def FileTest(self): self.file_data = {"fi 阅读全文