摘要: locust 多任务执行,task() 括号里的数值越大,执行频率越高 代码如下: from locust import HttpUser, TaskSet, task,osclass MyTask(TaskSet): @task(1) def get_weather(self): response 阅读全文
posted @ 2022-04-07 19:28 微风轻哨 阅读(700) 评论(0) 推荐(0) 编辑
摘要: locust 上传文件性能测试: 代码示例: from locust import HttpUser, TaskSet, task, osimport jsonclass MyTask(TaskSet): @task def FileTest(self): self.file_data = {"fi 阅读全文
posted @ 2022-04-07 15:34 微风轻哨 阅读(206) 评论(0) 推荐(0) 编辑