Skip to content
This repository has been archived by the owner on Mar 20, 2024. It is now read-only.

Quick fix for homu timeout on try (fixes #903) #174

Merged
merged 1 commit into from
Oct 15, 2018
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions homu/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -1023,10 +1023,10 @@ def start_build(state, repo_cfgs, buildbot_slots, logger, db, git_cfg):
else:
builders += repo_cfg['buildbot']['builders']
only_status_builders = False
if 'travis' in repo_cfg:
if 'travis' in repo_cfg and not state.try_choose:
builders += ['travis']
only_status_builders = False
if 'status' in repo_cfg:
if 'status' in repo_cfg and not state.try_choose:
found_travis_context = False
for key, value in repo_cfg['status'].items():
context = value.get('context')
Expand Down