comparison GenerateConfigurationForTests.py @ 99:37430f7430e3

config to test the PostgreSQL plugins
author Sebastien Jodogne <s.jodogne@gmail.com>
date Wed, 04 Jan 2017 16:31:06 +0100
parents a807a4699eb4
children 2af6c0fb850d
comparison
equal deleted inserted replaced
98:f2cbfaf1a9b0 99:37430f7430e3
117 config['Worklists'] = { 117 config['Worklists'] = {
118 'Enable': True, 118 'Enable': True,
119 'Database': os.path.abspath(os.path.join(os.path.dirname(__file__), './Database/Worklists/Working')), 119 'Database': os.path.abspath(os.path.join(os.path.dirname(__file__), './Database/Worklists/Working')),
120 } 120 }
121 121
122 config['PostgreSQL'] = {
123 'EnableIndex' : True,
124 'EnableStorage' : True,
125 'Host' : 'localhost',
126 'Port' : 5432,
127 'Database' : 'orthanctest',
128 'Username' : 'postgres',
129 'Password' : 'postgres'
130 }
131
122 132
123 133
124 # Enable case-insensitive PN (the default on versions <= 0.8.6) 134 # Enable case-insensitive PN (the default on versions <= 0.8.6)
125 config['CaseSensitivePN'] = False 135 config['CaseSensitivePN'] = False
126 136