User class that does requests to the locust web server running on localhost
| 26 | |
| 27 | |
| 28 | class WebsiteUser(MultipleHostsUser): |
| 29 | """ |
| 30 | User class that does requests to the locust web server running on localhost |
| 31 | """ |
| 32 | |
| 33 | host = "http://127.0.0.1:8089" |
| 34 | wait_time = between(2, 5) |
| 35 | tasks = [UserTasks] |
nothing calls this directly
no test coverage detected
searching dependent graphs…