diff options
author | Olivier Wilkinson (reivilibre) <oliverw@matrix.org> | 2022-07-05 12:18:07 +0100 |
---|---|---|
committer | Olivier Wilkinson (reivilibre) <oliverw@matrix.org> | 2022-07-05 12:18:07 +0100 |
commit | 30627554d42697baaa97349fd477e40fd6d6c683 (patch) | |
tree | eb970ce3ffba89315c016205c6e29dcbb7cbb5da | |
parent | DBG limit (diff) | |
download | synapse-30627554d42697baaa97349fd477e40fd6d6c683.tar.xz |
DBG set debug
-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 0e14d87113..52a01a3904 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -35,7 +35,7 @@ jobs: set -o pipefail synapse/scripts-dev/complement.sh --build-only #while :; do - POSTGRES=${{ (matrix.database == 'Postgres') && 1 || '' }} WORKERS=${{ (matrix.arrangement == 'workers') && 1 || '' }} COMPLEMENT_DIR=`pwd`/complement synapse/scripts-dev/complement.sh -f -run TestRestrictedRoomsLocalJoin -json 2>&1 | gotestfmt | tee /tmp/xxx + POSTGRES=${{ (matrix.database == 'Postgres') && 1 || '' }} WORKERS=${{ (matrix.arrangement == 'workers') && 1 || '' }} SYNAPSE_TEST_LOG_LEVEL=DEBUG COMPLEMENT_DIR=`pwd`/complement synapse/scripts-dev/complement.sh -f -run TestRestrictedRoomsLocalJoin -json 2>&1 | gotestfmt | tee /tmp/xxx #if grep FAIL /tmp/xxx; then # break #fi |