blob: 15b1d856cb5f48157da086dfac4fdad5fe0360ee [file] [log] [blame]
# Copyright 2022 The ChromiumOS Authors
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
from autotest_lib.client.common_lib import utils
AUTHOR = 'Chromeos Team'
NAME = 'tast.sensors'
METADATA = {
'contacts': ['tauto-core@google.com'],
'bug_component': 'b:1034523', # ChromeOS > Test > Harness > Tauto
'criteria': 'Tauto wrapper for specified tast tests',
}
TIME = 'MEDIUM'
TEST_TYPE = 'Server'
ATTRIBUTES = 'suite:sensors-tast'
MAX_RESULT_SIZE_KB = 256 * 1024
PY_VERSION = 3
JOB_RETRIES = 0 # Do not retry as these are informational tests.
DOC = '''
This suite runs the sensors related tests in Tast.
'''
def run(machine):
job.run_test('tast',
host=hosts.create_host(machine),
test_exprs=['("group:sensors")'],
ignore_test_failures=True, max_run_sec=3600,
command_args=args)
parallel_simple(run, machines)