[IMP] test_ir_sequence: avoid spurious traceback logging
[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
11 import test_expression
12 import test_ir_sequence
13 import test_orm
14
15 fast_suite = [
16     test_ir_sequence,
17     ]
18
19 checks = [
20     test_expression,
21     test_orm,
22     ]
23
24 # vim:expandtab:smartindent:tabstop=4:softtabstop=4:shiftwidth=4: