1# Copyright 2021 The Chromium OS Authors. All rights reserved. 2# Use of this source code is governed by a BSD-style license that can be 3# found in the LICENSE file. 4 5AUTHOR = 'Chromium OS team' 6NAME = 'tast.cellular-cq' 7TIME = 'MEDIUM' 8TEST_TYPE = 'Server' 9ATTRIBUTES = 'suite:cellular-cq' 10MAX_RESULT_SIZE_KB = 1024 * 1024 11PY_VERSION = 3 12 13DOC = ''' 14Run the Tast tests which run in suite:cellular-cq. 15 16"group:cellular" indicates tests that runs on devices with live cellular 17connection. And its sub-attribute "cellular_cq" indicates tests run in 18suite:cellular-cq. 19 20Tast is an integration-testing framework analagous to the test-running portion 21of Autotest. See https://chromium.googlesource.com/chromiumos/platform/tast/ for 22more information. 23 24See http://go/tast-failures for information about investigating failures. 25''' 26 27def run(machine): 28 job.run_test('tast', 29 host=hosts.create_host(machine), 30 test_exprs=['("group:cellular" && cellular_cq)'], 31 ignore_test_failures=False, max_run_sec=10800, 32 command_args=args, 33 retries=2) 34 35parallel_simple(run, machines) 36