diff options
author | David Robertson <davidr@element.io> | 2022-07-20 18:51:01 +0100 |
---|---|---|
committer | David Robertson <davidr@element.io> | 2022-07-20 18:51:01 +0100 |
commit | 6ae4b6d1c11b05d112987bb6e483398264ae5a42 (patch) | |
tree | 266436bf8c6758ecc02537f88b93491fdb593b51 | |
parent | Reproduce failure in GHA (diff) | |
download | synapse-6ae4b6d1c11b05d112987bb6e483398264ae5a42.tar.xz |
Run all tests while looking for this one failure
-rw-r--r-- | .github/workflows/tests.yml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 674fc118f1..a5a4213e90 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -31,8 +31,8 @@ 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 -run TestWriteMDirectAccountData -json 2>&1 | gotestfmt | tee /tmp/xxx - if grep ❌ /tmp/xxx; then + 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 + if grep "❌ TestWriteMDirectAccountData" /tmp/xxx; then break fi done |