@@ -707,28 +707,28 @@ jobs:
707707 cache-dependency-path : complement/go.sum
708708 go-version-file : complement/go.mod
709709
710- # - name: Run Complement Tests
711- # id: run_complement_tests
712- # # -p=1: We're using `-p 1` to force the test packages to run serially as GHA boxes
713- # # are underpowered and don't like running tons of Synapse instances at once.
714- # # -json: Output JSON format so that gotestfmt can parse it.
715- # #
716- # # tee /tmp/gotest-complement.log: We tee the output to a file so that we can re-process it
717- # # later on for better formatting with gotestfmt. But we still want the command
718- # # to output to the terminal as it runs so we can see what's happening in
719- # # real-time.
720- # run: |
721- # set -o pipefail
722- # COMPLEMENT_DIR=`pwd`/complement synapse/scripts-dev/complement.sh -p 1 -json 2>&1 | tee /tmp/gotest-complement.log
723- # shell: bash
724- # env:
725- # POSTGRES: ${{ (matrix.database == 'Postgres') && 1 || '' }}
726- # WORKERS: ${{ (matrix.arrangement == 'workers') && 1 || '' }}
727-
728- # - name: Formatted Complement test logs
729- # # Always run this step if we attempted to run the Complement tests.
730- # if: always() && steps.run_complement_tests.outcome != 'skipped'
731- # run: cat /tmp/gotest-complement.log | gotestfmt -hide "successful-downloads,empty-packages"
710+ - name : Run Complement Tests
711+ id : run_complement_tests
712+ # -p=1: We're using `-p 1` to force the test packages to run serially as GHA boxes
713+ # are underpowered and don't like running tons of Synapse instances at once.
714+ # -json: Output JSON format so that gotestfmt can parse it.
715+ #
716+ # tee /tmp/gotest-complement.log: We tee the output to a file so that we can re-process it
717+ # later on for better formatting with gotestfmt. But we still want the command
718+ # to output to the terminal as it runs so we can see what's happening in
719+ # real-time.
720+ run : |
721+ set -o pipefail
722+ COMPLEMENT_DIR=`pwd`/complement synapse/scripts-dev/complement.sh -p 1 -json 2>&1 | tee /tmp/gotest-complement.log
723+ shell : bash
724+ env :
725+ POSTGRES : ${{ (matrix.database == 'Postgres') && 1 || '' }}
726+ WORKERS : ${{ (matrix.arrangement == 'workers') && 1 || '' }}
727+
728+ - name : Formatted Complement test logs
729+ # Always run this step if we attempted to run the Complement tests.
730+ if : always() && steps.run_complement_tests.outcome != 'skipped'
731+ run : cat /tmp/gotest-complement.log | gotestfmt -hide "successful-downloads,empty-packages"
732732
733733 - name : Run in-repo Complement Tests
734734 id : run_in_repo_complement_tests
0 commit comments