[MERGE] from trunk
[odoo/odoo.git] / openerp / tests / __init__.py
index 3427743..5e41b3e 100644 (file)
@@ -8,7 +8,7 @@ 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.
 """
 
-from . import test_expression, test_html_sanitize, test_ir_sequence, test_orm,\
+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 = [
@@ -20,6 +20,7 @@ checks = [
     test_html_sanitize,
     test_db_cursor,
     test_orm,
+    test_fields,
     test_view_validation,
     test_misc,
 ]