kalenislims/lims/tests/__init__.py
Sebastián Marró 35f6cdea73 Initial commit
2017-10-07 21:23:22 -03:00

11 lines
300 B
Python

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