diff options
author | Richard van der Hoff <1389908+richvdh@users.noreply.github.com> | 2021-05-10 13:02:55 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-05-10 13:02:55 +0100 |
commit | 51065c44bb0875373fada2838e69e4bc5005a95d (patch) | |
tree | 00ae020731d559f59e87267d50f647c9962014cc /.github/workflows | |
parent | Always cache 'event_to_prev_state_group' (#9950) (diff) | |
download | synapse-51065c44bb0875373fada2838e69e4bc5005a95d.tar.xz |
Fix port_db on empty db (#9930)
... and test it.
Diffstat (limited to '.github/workflows')
-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 12c82ac620..e7f3be1b4e 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -273,7 +273,7 @@ jobs: python-version: ${{ matrix.python-version }} - name: Patch Buildkite-specific test scripts run: | - sed -i -e 's/host="postgres"/host="localhost"/' .buildkite/scripts/create_postgres_db.py + sed -i -e 's/host="postgres"/host="localhost"/' .buildkite/scripts/postgres_exec.py sed -i -e 's/host: postgres/host: localhost/' .buildkite/postgres-config.yaml sed -i -e 's|/src/||' .buildkite/{sqlite,postgres}-config.yaml sed -i -e 's/\$TOP/\$GITHUB_WORKSPACE/' .coveragerc |