mirror of
https://github.com/odoo/runbot.git
synced 2025-03-22 02:45:51 +07:00

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).
17 lines
434 B
Python
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
|