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

Commit 6a5cf1a

Browse files
authored
Fix Sytest environmental variable evaluation in CI (#15804)
1 parent 2301a09 commit 6a5cf1a

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

.github/workflows/tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -399,8 +399,8 @@ jobs:
399399
env:
400400
SYTEST_BRANCH: ${{ github.head_ref }}
401401
POSTGRES: ${{ matrix.job.postgres && 1}}
402-
MULTI_POSTGRES: ${{ (matrix.job.postgres == 'multi-postgres') && 1}}
403-
ASYNCIO_REACTOR: ${{ (matrix.job.reactor == 'asyncio') && 1 }}
402+
MULTI_POSTGRES: ${{ (matrix.job.postgres == 'multi-postgres') || '' }}
403+
ASYNCIO_REACTOR: ${{ (matrix.job.reactor == 'asyncio') || '' }}
404404
WORKERS: ${{ matrix.job.workers && 1 }}
405405
BLACKLIST: ${{ matrix.job.workers && 'synapse-blacklist-with-workers' }}
406406
TOP: ${{ github.workspace }}

changelog.d/15804.bugfix

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Fix Sytest environmental variable evaluation in CI.

0 commit comments

Comments
 (0)