1# ***** BEGIN LICENSE BLOCK *****
2# This Source Code Form is subject to the terms of the Mozilla Public
3# License, v. 2.0. If a copy of the MPL was not distributed with this file,
4# You can obtain one at http://mozilla.org/MPL/2.0/.
5# ***** END LICENSE BLOCK *****
6
7config = {
8    "options": [
9        "--prefs-root=%(test_path)s/prefs",
10        "--processes=1",
11        "--config=%(test_path)s/wptrunner.ini",
12        "--ca-cert-path=%(test_path)s/certs/cacert.pem",
13        "--host-key-path=%(test_path)s/certs/web-platform.test.key",
14        "--host-cert-path=%(test_path)s/certs/web-platform.test.pem",
15        "--certutil-binary=%(test_install_path)s/bin/certutil",
16    ],
17
18    "default_actions": [
19        'clobber',
20        'download-and-extract',
21        'create-virtualenv',
22        'pull',
23        'install',
24        'run-tests',
25    ],
26
27}
28