[MERGE] from trunk
[odoo/odoo.git] / openerp / tests / __init__.py
index e02a7d7..5e41b3e 100644 (file)
@@ -8,19 +8,21 @@ 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_expression
-import test_ir_sequence
-import test_orm
-import test_fields
+from . import test_expression, test_html_sanitize, test_ir_sequence, test_orm, test_fields,\
+              test_view_validation, test_uninstall, test_misc, test_db_cursor
 
 fast_suite = [
     test_ir_sequence,
-    ]
+]
 
 checks = [
     test_expression,
+    test_html_sanitize,
+    test_db_cursor,
     test_orm,
     test_fields,
-    ]
+    test_view_validation,
+    test_misc,
+]
 
 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: