我正在尝试使用 python Locust 测试我的应用程序,但我无法使用基本版本。我的 locustfile.py 文件:
from locust import HttpLocust, TaskSet, task
class UserBehavior(TaskSet):
@task(1)
def test_get(self):
self.client.get("/")
class WebsiteUser(HttpLocust):
task_set = UserBehavior
min_wait=5000
max_wait=9000
我跑了
locust --host=http://example.com
并得到这个错误:
[2015-08-04 23:10:11,734] my-macbook-pro.local/ERROR/stderr: herror: [Errno 1] Unknown host
想知道是否只是我输入了错误的主机,我尝试了 facebook、google 和其他主机也没有成功。
我在这里做错了什么?