Skip to content
This repository was archived by the owner on Apr 26, 2024. It is now read-only.

Commit 09a3c5c

Browse files
authored
Fix Complement runs always being Postgres (#13034)
* Fix Complement runs always being Postgres * Newsfile Signed-off-by: Olivier Wilkinson (reivilibre) <[email protected]>
1 parent 5d139f5 commit 09a3c5c

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/tests.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ jobs:
347347

348348
- run: |
349349
set -o pipefail
350-
POSTGRES=${{ (matrix.database == 'Postgres') && 1 }} COMPLEMENT_DIR=`pwd`/complement synapse/scripts-dev/complement.sh -json 2>&1 | gotestfmt
350+
POSTGRES=${{ (matrix.database == 'Postgres') && 1 || '' }} COMPLEMENT_DIR=`pwd`/complement synapse/scripts-dev/complement.sh -json 2>&1 | gotestfmt
351351
shell: bash
352352
name: Run Complement Tests
353353

changelog.d/13034.misc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Enable testing against PostgreSQL databases in Complement CI.

0 commit comments

Comments
 (0)