This commit is contained in:
Eden Kirin
2023-09-15 19:43:58 +02:00
parent d4a04adfda
commit f57c4d4491
3 changed files with 12 additions and 3 deletions

View File

@ -94,8 +94,8 @@ class TestingSettings(BaseEnvSettings):
DB_NAME: str = "test_db-name"
DB_USER: str = "db-user"
DB_PASSWORD: str = "db-password"
DROP_DATABASE_BEFORE_TESTS = True
DROP_DATABASE_AFTER_TESTS = True
DROP_DATABASE_BEFORE_TESTS: bool = True
DROP_DATABASE_AFTER_TESTS: bool = True
class ServerSettings(BaseEnvSettings):