blob: c60c1210ad51cce220f2fcb5c4a4205e66aa0cdb [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
PYTHON_VERSION_COMPATIBILITY = "PY3"
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,
),
}