blob: 30bf72c38bb15f614d7def9ee703a87fb9d2cd8f [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.ssh_into_qemu':
Property(
help='Enables QEMU testing over SSH',
param_name='ssh_into_qemu',
kind=bool,
default=False,
),
'experimental.upload_test_outputs':
Property(
help='Enables storing test outputs in GCS',
param_name='upload_test_outputs',
kind=bool,
default=False,
),
}