Skip to content

Commit 775faa0

Browse files
author
James William Pye
committed
Silent mode off for tests.
1 parent 0a190a6 commit 775faa0

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

postgresql/test/test_cluster.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@ def init(self, *args, **kw):
3232
self.cluster.settings.update({
3333
'max_connections' : '8',
3434
'listen_addresses' : 'localhost',
35-
'port' : '6543'
35+
'port' : '6543',
36+
'silent_mode' : 'off',
3637
})
3738

3839
def testSuperPassword(self):

postgresql/unittest.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,7 @@ def configure_cluster(self):
5555
listen_addresses = 'localhost',
5656
log_destination = 'stderr',
5757
log_min_messages = 'FATAL',
58+
silent_mode = 'off',
5859
))
5960

6061
def initialize_database(self):

0 commit comments

Comments
 (0)