mirror of
https://github.com/odoo/runbot.git
synced 2025-03-25 20:35:52 +07:00

In a create config, a parent result is computed based on children results In some situations, it could be handy to ignore the result of some sub-builds. Example: the nightly tests are just the children of one nightly build with a create config. The external tests are failing randomly and as a consequence, the nightly result is always red. On the other hand, keeping the test running, just to have logs is a good idea. With this commit, a config_step of type create can be marked as orphan_result, that way, the result is not taken into account in the parent build result.
8 lines
192 B
Python
8 lines
192 B
Python
from . import test_repo
|
|
from . import test_branch
|
|
from . import test_build
|
|
from . import test_frontend
|
|
from . import test_schedule
|
|
from . import test_cron
|
|
from . import test_build_config_step
|