a74122424dedfede4bc153215776170796e27df2
[odoo/odoo.git] / openerp / tests / __init__.py
1 # -*- coding: utf-8 -*-
2 """
3 Tests for the OpenERP library.
4
5 This module groups a few sub-modules containing unittest2 test cases.
6
7 Tests can be explicitely added to the `fast_suite` or `checks` lists or not.
8 See the :ref:`test-framework` section in the :ref:`features` list.
9 """
10 import test_acl
11 import test_basecase
12 import test_db_cursor
13 import test_expression
14 import test_fields
15 import test_ir_filters
16 import test_ir_sequence
17 import test_mail
18 import test_misc
19 import test_orm
20 import test_osv
21 import test_translate
22 import test_view_validation
23 import test_qweb
24 import test_func
25 # This need a change in `oe run-tests` to only run fast_suite + checks by default.
26 # import test_xmlrpc
27
28 fast_suite = [
29     test_ir_sequence,
30     test_ir_filters
31 ]
32
33 checks = [
34     test_acl,
35     test_expression,
36     test_mail,
37     test_db_cursor,
38     test_orm,
39     test_fields,
40     test_basecase,
41     test_view_validation,
42     test_misc,
43     test_osv,
44     test_translate,
45     test_qweb,
46     test_func,
47 ]
48  
49 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: