blob: 1e909488ef9f74eeb356ede2ba0d2e177c8a9421 [file] [log] [blame]
Christopher Wiley77c53312013-06-27 17:28:35 -07001# Copyright (c) 2013 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 = "wiley@chromium.org"
6NAME = "wifi_flaky"
7PURPOSE = "Track and monitor flaky WiFi tests."
8CRITERIA = "All tests with SUITE=wifi_flaky must pass."
9
10TIME = "SHORT"
11TEST_CATEGORY = "General"
12TEST_CLASS = "suite"
13TEST_TYPE = "Server"
14
15DOC = """
16Test suites are great, but if people get used to seeing 2-3 failures per run,
17they stop looking. Move flaky tests from elsewhere and into this suite until
18they can be made stable again. Even flaky tests need to run once in a while.
19"""
20
21import common
22from autotest_lib.server.cros.dynamic_suite import dynamic_suite
23
24dynamic_suite.reimage_and_run(
25 build=build, board=board, name=NAME, job=job, pool=pool,
26 check_hosts=check_hosts, add_experimental=True, num=num,
27 file_bugs=file_bugs, skip_reimage=dynamic_suite.skip_reimage(globals()),
28 max_runtime_mins=60)