blob: 99c3c0e6da48a65f2ec883a63b512e48cb5242ba [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,
),
}