I am executing tests with mvn and would like maven to report “build failure” if any request fails.
I’ve noticed that if the number of OK requests is in the 6 figures and a few requests failed (e.g. due to timeout or similar events), Gatling will still report that global.successfulRequests.percent.is(100) = True.
Is this the expected behavior, or might there be some issue with rounding up the percentile?
I guess I could solve it by replacing global.successfulRequests.percent.is(100) with global.failedRequests.count.is(0), but I am just wondering if this is a bug or not?