Bug 1892041 - Part 3: Update test exclusions. r=spidermonkey-reviewers,dminor
[gecko.git] / testing / awsy / awsy / __init__.py
blobff457dd164a775f763c9372fece8176533726403
1 # This Source Code Form is subject to the terms of the Mozilla Public
2 # License, v. 2.0. If a copy of the MPL was not distributed with this
3 # file, You can obtain one at http://mozilla.org/MPL/2.0/.
5 # Maximum number of tabs to open
6 MAX_TABS = 30
8 # Default amount of seconds to wait in between opening tabs
9 PER_TAB_PAUSE = 10
11 # Default amount of seconds to wait for things to be settled down
12 SETTLE_WAIT_TIME = 30
14 # Amount of times to run through the test suite
15 ITERATIONS = 5
17 __all__ = [
18 "MAX_TABS",
19 "PER_TAB_PAUSE",
20 "SETTLE_WAIT_TIME",
21 "ITERATIONS",
22 "webservers",
23 "process_perf_data",