runbot/runbot/tests/__init__.py
Christophe Monniez c49e4d21ad [IMP] runbot: allow a parent to ignore some child builds
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.
2019-05-23 12:32:35 +02:00

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