summaryrefslogtreecommitdiff
path: root/build/scripts/slave/recipes/chromeproxy.py
blob: bfe32850f9b1591bf9898b968942c9a81c0a1e0d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright (c) 2015 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.

"""Recipe for running ChromeProxy integration tests on desktop VM's."""

DEPS = [
    'properties',
    'step',
]


def RunSteps(api):
  # TODO(bustamante): Add ChromeProxy tests.
  api.step('Placeholder Step', ['echo', 'Placeholder Step'])


def GenTests(api):
  yield (
      api.properties.generic()
  )