mirror of
https://git.anonymousland.org/anonymousland/synapse.git
synced 2025-05-02 12:16:09 -04:00
Allow specifying the Postgres database's port when running unit tests with Postgres. (#12376)
This commit is contained in:
parent
efdbcfd6af
commit
708d88b1a2
4 changed files with 24 additions and 3 deletions
|
@ -76,6 +76,7 @@ from tests.utils import (
|
|||
POSTGRES_BASE_DB,
|
||||
POSTGRES_HOST,
|
||||
POSTGRES_PASSWORD,
|
||||
POSTGRES_PORT,
|
||||
POSTGRES_USER,
|
||||
SQLITE_PERSIST_DB,
|
||||
USE_POSTGRES_FOR_TESTS,
|
||||
|
@ -747,6 +748,7 @@ def setup_test_homeserver(
|
|||
"host": POSTGRES_HOST,
|
||||
"password": POSTGRES_PASSWORD,
|
||||
"user": POSTGRES_USER,
|
||||
"port": POSTGRES_PORT,
|
||||
"cp_min": 1,
|
||||
"cp_max": 5,
|
||||
},
|
||||
|
@ -786,6 +788,7 @@ def setup_test_homeserver(
|
|||
database=POSTGRES_BASE_DB,
|
||||
user=POSTGRES_USER,
|
||||
host=POSTGRES_HOST,
|
||||
port=POSTGRES_PORT,
|
||||
password=POSTGRES_PASSWORD,
|
||||
)
|
||||
db_conn.autocommit = True
|
||||
|
@ -833,6 +836,7 @@ def setup_test_homeserver(
|
|||
database=POSTGRES_BASE_DB,
|
||||
user=POSTGRES_USER,
|
||||
host=POSTGRES_HOST,
|
||||
port=POSTGRES_PORT,
|
||||
password=POSTGRES_PASSWORD,
|
||||
)
|
||||
db_conn.autocommit = True
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue