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. 4AUTHOR = "chromeos-commercial-remote-management" 5NAME = "omaha_per-week" 6PURPOSE = "Omaha tests" 7TIME = "LONG" 8TEST_CATEGORY = "Omaha" 9TEST_CLASS = "suite" 10TEST_TYPE = "Server" 11DOC = """ 12This is the part of the omaha test suite which should run once per week. 13@param build: The name of the image to test. 14 Ex: x86-mario-release/R17-1412.33.0-a1-b29 15@param board: The board to test on. Ex: x86-mario 16@param pool: The pool of machines to utilize for scheduling. If pool=None 17 board is used. 18@param check_hosts: require appropriate live hosts to exist in the lab. 19@param SKIP_IMAGE: (optional) If present and True, don't re-image devices. 20""" 21import common 22from autotest_lib.server.cros.dynamic_suite import dynamic_suite 23args_dict['max_runtime_mins'] = 960 24args_dict['timeout_mins'] = 1440 25args_dict['file_bugs'] = False 26args_dict['name'] = 'omaha_per-week' 27args_dict['job'] = job 28args_dict['add_experimental'] = True 29args_dict['bug_template'] = _BUG_TEMPLATE 30dynamic_suite.reimage_and_run(**args_dict) 31