Skip to content

Commit

Permalink
Increased 95th percentile response time in load tests that run in CI
Browse files Browse the repository at this point in the history
  • Loading branch information
ricardogsilva committed Sep 16, 2024
1 parent 307a5e5 commit c960295
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/loadtests/locustfile.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ def _(environment, **kwargs):
logging.error("Test failed due to average response time ratio > 1000 ms")
environment.process_exit_code = 1
elif environment.stats.total.get_response_time_percentile(0.95) > 2000:
logging.error("Test failed due to 95th percentile response time > 2000 ms")
logging.error("Test failed due to 95th percentile response time > 5000 ms")
environment.process_exit_code = 1
else:
environment.process_exit_code = 0

0 comments on commit c960295

Please sign in to comment.