diff options
author | David Robertson <davidr@element.io> | 2022-07-21 00:23:35 +0100 |
---|---|---|
committer | David Robertson <davidr@element.io> | 2022-07-21 00:23:35 +0100 |
commit | b9ced327c82c5f3935c1f9c97a11caa20f3c6117 (patch) | |
tree | ecfc8a3954340634beb54d20fbbce0fa01e15fa6 | |
parent | Run all tests while looking for this one failure (diff) | |
download | synapse-dmr/deflake/TestWriteMDirectAccountData.tar.xz |
only stop if the grep matches?! github/dmr/deflake/TestWriteMDirectAccountData dmr/deflake/TestWriteMDirectAccountData
-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 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 |