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 = "ChromeOS Team" 6NAME = "bvt-tast-parallels-cq" 7PURPOSE = "Runs all critical Parallels Tast tests." 8 9TIME = "SHORT" 10TEST_CATEGORY = "General" 11TEST_CLASS = "suite" 12TEST_TYPE = "Server" 13 14DOC = """ 15This suite verifies basic Parallels functionality on ChromeOS for the Chrome 16OS Commit Queue by running all Parallels Tast integration tests that must 17always pass against a DUT. 18 19This suite should only be run against devices licensed for an appropriate 20version of Windows and Office. Contact parallels-cros@ for details about 21license specifics. 22""" 23 24import common 25from autotest_lib.server.cros.dynamic_suite import dynamic_suite 26 27args_dict['name'] = NAME 28args_dict['max_runtime_mins'] = 20 29args_dict['timeout_mins'] = 1440 30args_dict['job'] = job 31 32dynamic_suite.reimage_and_run(**args_dict) 33