trytondo-sale_pos_extras/tests/__init__.py

10 lines
330 B
Python

# This file is part of Tryton. The COPYRIGHT file at the top level of
# this repository contains the full copyright notices and license terms.
try:
from trytond.modules.sale_pos_extras.tests.test_sale_pos_extras import suite # noqa: E501
except ImportError:
from .test_sale_pos_extras import suite
__all__ = ['suite']