Basic testing infrastructure
This commit is contained in:
11
settings_test.py
Normal file
11
settings_test.py
Normal file
@ -0,0 +1,11 @@
|
||||
import logging
|
||||
|
||||
POSTGRES_HOST: str = "localhost"
|
||||
POSTGRES_PORT: int = 5432
|
||||
POSTGRES_TEST_USER = "addressbook"
|
||||
POSTGRES_TEST_PASSWORD = "addressbook"
|
||||
|
||||
LOG_PATH = "/tmp/addressbook-log"
|
||||
MIN_LOG_LEVEL: int = logging.INFO
|
||||
DROP_TEMPLATE_DATABASE_BEFORE_TESTS: bool = False
|
||||
FLYWAY_BINARY_PATH: str = "/usr/bin/flyway"
|
||||
Reference in New Issue
Block a user