[FIX] ir.ui.view missing time libraries in qweb rendering context
[odoo/odoo.git] / openerp / tests / __init__.py
index e6a2eac..a741224 100644 (file)
@@ -7,7 +7,6 @@ This module groups a few sub-modules containing unittest2 test cases.
 Tests can be explicitely added to the `fast_suite` or `checks` lists or not.
 See the :ref:`test-framework` section in the :ref:`features` list.
 """
-
 import test_acl
 import test_basecase
 import test_db_cursor
@@ -20,8 +19,9 @@ import test_misc
 import test_orm
 import test_osv
 import test_translate
-import test_uninstall
 import test_view_validation
+import test_qweb
+import test_func
 # This need a change in `oe run-tests` to only run fast_suite + checks by default.
 # import test_xmlrpc
 
@@ -42,6 +42,8 @@ checks = [
     test_misc,
     test_osv,
     test_translate,
+    test_qweb,
+    test_func,
 ]
  
 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: