OLD | NEW |
---|---|
(Empty) | |
1 #!/usr/bin/env python | |
2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | |
3 # Use of this source code is governed by a BSD-style license that can be | |
4 # found in the LICENSE file. | |
5 | |
6 # Configuration file for pyauto perf tests. | |
7 # This file is used to specify google account credentials and | |
8 # custom google account, gmail, docs, plus urls if you don't want to use | |
9 # the public urls of these services. It is formatted as a python dictionary. | |
10 | |
11 { | |
12 # Set to custom username/password if desired. | |
13 # If you are external to Google, you must set username/password. | |
14 # If you are internal to Google, you can leave them as None | |
15 # and tests will try to use internal credential file. | |
16 'username': None, | |
17 'password': None, | |
18 | |
19 # Set to custom Google account url if desired. | |
20 'google_account_url': None, | |
dennis_jeffrey
2012/08/17 17:35:44
Add a comment here to let people know what the def
fdeng1
2012/08/17 23:19:37
Done.
| |
21 | |
22 # Set to custom Gmail/Plus/Docs urls if desired. | |
23 # Only effective for perf_endure.py | |
24 'gmail_url': None, | |
25 'plus_url': None, | |
26 'docs_url': None, | |
dennis_jeffrey
2012/08/17 17:35:44
for each of the above 3 lines, do the same thing a
fdeng1
2012/08/17 23:19:37
Done.
| |
27 } | |
OLD | NEW |