From 044d62342474e17d5fcaf1e640e39f5d30068fc3 Mon Sep 17 00:00:00 2001 From: Wolfgang Walther Date: Tue, 9 Jun 2026 08:36:34 +0200 Subject: [PATCH] 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 :x:. --- .github/workflows/test.yaml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml index 9269a2a80..b28c706d0 100644 --- a/.github/workflows/test.yaml +++ b/.github/workflows/test.yaml @@ -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()