Home | History | Annotate | Download | only in test_suites
      1 # Copyright 2018 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 
      5 AUTHOR = "Katherine Threlkeld <kathrelkeld (a] chromium.org>"
      6 NAME = "ent-nightly"
      7 PURPOSE = "Lower priority Enterprise related tests."
      8 TIME = "SHORT"
      9 TEST_CATEGORY = "Functional"
     10 TEST_CLASS = "suite"
     11 TEST_TYPE = "Server"
     12 
     13 DOC = """
     14 This suite runs Enterprise tests which should run on nightly, across
     15 a subset of boards.
     16 """
     17 
     18 import common
     19 from autotest_lib.server.cros import provision
     20 from autotest_lib.server.cros.dynamic_suite import dynamic_suite
     21 
     22 args_dict['name'] = 'ent-nightly'
     23 args_dict['add_experimental'] = True
     24 args_dict['max_runtime_mins'] = 60
     25 args_dict['version_prefix'] = provision.CROS_VERSION_PREFIX
     26 args_dict['job'] = job
     27 
     28 dynamic_suite.reimage_and_run(**args_dict)
     29