diff --git a/scripts/ci/locustfile.py b/scripts/ci/locustfile.py index 859462555..431fd9938 100644 --- a/scripts/ci/locustfile.py +++ b/scripts/ci/locustfile.py @@ -22,8 +22,8 @@ class OSRMTasks(TaskSet): @task def get_route(self): - start = self.coordinates[0] #random.choice(self.coordinates) - end = self.coordinates[-1] #random.choice(self.coordinates) + start = (52.1887017,12.9249433) # self.coordinates[0] #random.choice(self.coordinates) + end = (52.7606980,14.0521751) #self.coordinates[-1] #random.choice(self.coordinates) start_coord = f"{start[1]:.6f},{start[0]:.6f}" end_coord = f"{end[1]:.6f},{end[0]:.6f}"