pgtoolkit.conf.example
author Radek Brich <radek.brich@devl.cz>
Sat, 29 Sep 2012 13:53:54 +0200
changeset 49 08e4dfe1b0cb
parent 44 4fe39c59c515
permissions -rw-r--r--
Add test for MyManager (enable only when MySQLdb is available). Configure tests using pgtoolkit.conf (same as used by other executables).

### named connections
databases = {
  # database for tests.py (postgres, mysql - remove one of the lines to skip particular tests)
  'test' : 'host=127.0.0.1 dbname=test user=test password=test',
  'test_mysql' : 'host=127.0.0.1 db=test user=test password=test',
}

### meta database (contains connection parameters for other databases)
meta_db = 'host=10.8.0.1 dbname=central'
# query for connection parameters, input is database name (will be placed instead of %s)
meta_query = '''SELECT host, port, dbname, user, password FROM config.databases WHERE name = %s LIMIT 1'''