blob: cdca88989b693a3ceafc07628ee582037b1675e6 [file] [log] [blame]
# Copyright 2019 The Fuchsia 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.recipe_api import Property
PROPERTIES = {
"experimental.resultstore": Property(
help="Enables uploading test results to resultstore",
param_name="resultstore",
kind=bool,
default=False,
),
"experimental.partial_checkout": Property(
help="Enables using a partial git cache",
param_name="partial_checkout",
kind=bool,
default=False,
),
"experimental.test_on_gce": Property(
help="Enables testing on gce",
param_name="test_on_gce",
kind=bool,
default=False,
),
}