fix web tests

bzr revid: al@openerp.com-20140209004310-0jpc29beh7k1e27c
This commit is contained in:
Antony Lesuisse 2014-02-09 01:43:10 +01:00
parent 20c21873f0
commit c954e9adf2
2 changed files with 3 additions and 11 deletions

View File

@ -1,8 +1,4 @@
# -*- coding: utf-8 -*-
from . import test_menu, test_serving_base, test_js
fast_suite = []
checks = [
test_menu,
test_serving_base,
]
import test_js
import test_menu
import test_serving_base

View File

@ -21,10 +21,6 @@ class WebSuite(QUnitSuite):
''
])
super(WebSuite, self).__init__(url, 50000)
def run(self, result):
if sql_db._Pool is not None:
sql_db._Pool.close_all(sql_db.dsn(tools.config['db_name']))
return super(WebSuite, self).run(result)
def load_tests(loader, standard_tests, _):
standard_tests.addTest(WebSuite())