Get the bdb config for the cluster used in the maint notifications tests. This will be used to create the test database for each test. The bdb config is the same for all tests, but the database is created with a random name.
(cluster_endpoint_name: str)
| 112 | |
| 113 | @pytest.fixture() |
| 114 | def maint_notifications_cluster_bdb_config(cluster_endpoint_name: str): |
| 115 | """ |
| 116 | Get the bdb config for the cluster used in the maint notifications tests. |
| 117 | This will be used to create the test database for each test. |
| 118 | The bdb config is the same for all tests, but the database is created with a random name. |
| 119 | """ |
| 120 | return get_bdbs_config(cluster_endpoint_name) |
| 121 | |
| 122 | |
| 123 | @pytest.fixture() |
nothing calls this directly
no test coverage detected