runbot/runbot/tests/__init__.py
Christophe Monniez 981cb7e1b6 [IMP] runbot: use a Dockerfile model
Currently, runbot is using a single Dockerfile maintained in a data file
in the source code. This situation is not convenient for testing Odoo in
different environments.

With this commit, a Dockerfile Odoo model is used to allow usage of
multiple Docker containers.

This model comes with a pre-defined Dockerfile that can be used to build
the current Odoo supported versions (12.0 up to 14.0).
2020-11-10 09:52:48 +01:00

17 lines
434 B
Python

from . import common
from . import test_repo
from . import test_build_error
from . import test_branch
from . import test_build
from . import test_schedule
from . import test_cron
from . import test_build_config_step
from . import test_event
from . import test_command
from . import test_build_stat
from . import test_version
from . import test_runbot
from . import test_commit
from . import test_upgrade
from . import test_dockerfile