From b9ced327c82c5f3935c1f9c97a11caa20f3c6117 Mon Sep 17 00:00:00 2001 From: David Robertson Date: Thu, 21 Jul 2022 00:23:35 +0100 Subject: only stop if the grep matches?! --- .github/workflows/tests.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index a5a4213e90..7dca7bfcac 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -31,7 +31,7 @@ jobs: set -o pipefail synapse/scripts-dev/complement.sh --build-only while :; do - POSTGRES=1 WORKERS=1 SYNAPSE_TEST_LOG_LEVEL=DEBUG COMPLEMENT_DIR=`pwd`/complement synapse/scripts-dev/complement.sh -f -json 2>&1 | gotestfmt | tee /tmp/xxx + (POSTGRES=1 WORKERS=1 SYNAPSE_TEST_LOG_LEVEL=DEBUG COMPLEMENT_DIR=`pwd`/complement synapse/scripts-dev/complement.sh -f -json 2>&1 | gotestfmt | tee /tmp/xxx) || true if grep "❌ TestWriteMDirectAccountData" /tmp/xxx; then break fi -- cgit 1.4.1