[FIX] tests: allow running the tests when installing a database created by XML-RPC.

bzr revid: vmt@openerp.com-20120822134820-pevo06jwrhm8unui
This commit is contained in:
Vo Minh Thu 2012-08-22 15:48:20 +02:00
parent 7f6ab553b2
commit 079b425d11
1 changed files with 8 additions and 0 deletions

View File

@ -1,5 +1,6 @@
# -*- coding: utf-8 -*-
import os
import threading
import time
import unittest2
import xmlrpclib
@ -11,6 +12,13 @@ ADDONS_PATH = openerp.tools.config['addons_path']
PORT = openerp.tools.config['xmlrpc_port']
DB = openerp.tools.config['db_name']
# If the database name is not provided on the command-line,
# use the one on the thread (which means if it is provided on
# the command-line, this will break when installing another
# database from XML-RPC).
if not DB and hasattr(threading.current_thread(), 'dbname'):
DB = threading.current_thread().dbname
HOST = '127.0.0.1'
ADMIN_USER = 'admin'