Skip to content

Commit

Permalink
adjust threshold for github actions
Browse files Browse the repository at this point in the history
  • Loading branch information
cassidycodes committed Oct 18, 2024
1 parent c6fe94d commit 0927ffc
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions k6/integration-test.js
Original file line number Diff line number Diff line change
Expand Up @@ -27,14 +27,15 @@ export const options = {
thresholds: {
"http_req_duration{hive:enabled}": [
{
threshold: "p(95)<25",
// Set a threshold that works consistently on GitHub Actions runners
threshold: "p(95)<50",
abortOnFail: true,
},
],
"http_req_duration{hive:disabled}": [
{
threshold: "p(95)<25",
abortOnFail: true,
threshold: "p(95)<50",
abortOnFail: false,
},
],
checks: [
Expand Down

0 comments on commit 0927ffc

Please sign in to comment.