Sha256: 025ae72382bc91556fc47f026bf7180d8456da03c4dc9c6aeaed3adc2a0acda1

Contents?: true

Size: 880 Bytes

Versions: 2

Compression:

Stored size: 880 Bytes

Contents

# Copyright 2019 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.

from recipe_engine import post_process

DEPS = [
    'gerrit',
    'recipe_engine/buildbucket',
    'recipe_engine/properties',
    'tryserver',
]


def RunSteps(api):
  api.tryserver.gerrit_change_fetch_ref


def GenTests(api):
  yield (api.test('timeout') + api.buildbucket.try_build(
      'chromium',
      'linux',
      git_repo='https://chromium.googlesource.com/chromium/src',
      change_number=91827,
      patch_set=1) + api.tryserver.gerrit_change_target_ref('refs/heads/master')
         + api.override_step_data(
             'gerrit fetch current CL info', times_out_after=1200) +
         api.post_process(post_process.StatusException) + api.post_process(
             post_process.DropExpectation))

Version data entries

2 entries across 2 versions & 1 rubygems

Version Path
libv8-8.4.255.0.1 vendor/depot_tools/recipes/recipe_modules/tryserver/tests/gerrit_change_fetch_ref_timeout.py
libv8-8.4.255.0 vendor/depot_tools/recipes/recipe_modules/tryserver/tests/gerrit_change_fetch_ref_timeout.py