ci(test): fail loadtest correctly

Previously this would only fail if *each* row had `:x:` in it, which was
never the case, because the header never has it. It is supposed to fail
when *at least one* row has an .
This commit is contained in:
Wolfgang Walther
2026-06-09 12:35:25 +00:00
parent 0b5655b9d3
commit 044d623424
+3 -3
View File
@@ -162,9 +162,9 @@ jobs:
# The loadtest reporter writes them when any of individual steps fails the performance
# regression threshold.
run: |
postgrest-loadtest-report -g ${{ matrix.kind }} -p 50 \
| tee "$GITHUB_STEP_SUMMARY" \
| grep -v ':x:'
! (postgrest-loadtest-report -g ${{ matrix.kind }} -p 50 \
| tee "$GITHUB_STEP_SUMMARY" \
| grep ':x:')
- name: Report P0
if: always()