1# Copyright 2022 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-ota-ee-unstable' 7TIME = 'MEDIUM' 8TEST_TYPE = 'Server' 9ATTRIBUTES = 'suite:cellular_ota_flaky' 10MAX_RESULT_SIZE_KB = 1024 * 1024 11PY_VERSION = 3 12DEPENDENCIES = "carrier:ee" 13 14DOC = ''' 15Run the unstable Tast tests which verify basic Cellular functionality. 16 17"group:cellular" indicates that the test runs on DUTs with a Cellular modem. 18"cellular_sim_active": Used to select tests that require a sim card . 19"cellular_unstable": Unstable tests that will be included in this suite. 20 21Tast is an integration-testing framework analagous to the test-running portion 22of Autotest. See https://chromium.googlesource.com/chromiumos/platform/tast/ for 23more information. 24 25See http://go/tast-failures for information about investigating failures. 26''' 27 28def run(machine): 29 job.run_test('tast', 30 host=hosts.create_host(machine), 31 test_exprs=['("group:cellular" && "cellular_sim_active" && "cellular_unstable")'], 32 ignore_test_failures=True, max_run_sec=10800, 33 command_args=args) 34 35parallel_simple(run, machines) 36