diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2022-08-28 21:05:30 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-08-28 20:05:30 +0000 |
commit | 4f6de33f4147f745eb808b717666eb4d35a12716 (patch) | |
tree | a0617dbe7533a55944bd889ea0c4db6078e91155 /.github/workflows/tests.yml | |
parent | Improve documentation around user registration (#13640) (diff) | |
download | synapse-4f6de33f4147f745eb808b717666eb4d35a12716.tar.xz |
Print complement failure results last (#13639)
Since github always scrolls to the bottom of any test output, let's put the failed tests last and hide any successful packages.
Diffstat (limited to '.github/workflows/tests.yml')
-rw-r--r-- | .github/workflows/tests.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 144cb9ffaa..3e6d718a7c 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -354,7 +354,7 @@ jobs: - run: | set -o pipefail - POSTGRES=${{ (matrix.database == 'Postgres') && 1 || '' }} WORKERS=${{ (matrix.arrangement == 'workers') && 1 || '' }} COMPLEMENT_DIR=`pwd`/complement synapse/scripts-dev/complement.sh -json 2>&1 | gotestfmt + POSTGRES=${{ (matrix.database == 'Postgres') && 1 || '' }} WORKERS=${{ (matrix.arrangement == 'workers') && 1 || '' }} COMPLEMENT_DIR=`pwd`/complement synapse/scripts-dev/complement.sh -json 2>&1 | synapse/.ci/scripts/gotestfmt shell: bash name: Run Complement Tests |