Skip to content

Commit

Permalink
fix: PostgreSql test parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
kukushking committed Jul 11, 2023
1 parent 848c854 commit 95b9715
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -137,7 +137,14 @@ def workgroup3(bucket, kms_key):
@pytest.fixture(scope="session")
def databases_parameters(cloudformation_outputs, db_password):
parameters = dict(
postgresql={}, mysql={}, redshift={}, sqlserver={}, mysql_serverless={}, oracle={}, redshift_serverless={}
postgresql={},
mysql={},
redshift={},
sqlserver={},
mysql_serverless={},
oracle={},
redshift_serverless={},
postgresql_serverless={},
)
parameters["postgresql"]["host"] = cloudformation_outputs.get("PostgresqlAddress")
parameters["postgresql"]["port"] = cloudformation_outputs.get("PostgresqlPort")
Expand Down

0 comments on commit 95b9715

Please sign in to comment.