(self, **kwargs)
| 1072 | @unittest.skipIf(os.environ.get('PGHOST'), 'using remote cluster for testing') |
| 1073 | class TestHotStandby(tb.HotStandbyTestCase): |
| 1074 | def create_pool(self, **kwargs): |
| 1075 | conn_spec = self.standby_cluster.get_connection_spec() |
| 1076 | conn_spec.update(kwargs) |
| 1077 | return pg_pool.create_pool(loop=self.loop, **conn_spec) |
| 1078 | |
| 1079 | async def test_standby_pool_01(self): |
| 1080 | for n in {1, 3, 5, 10, 20, 100}: |
no test coverage detected