2012-02-20 19:10:25 +04:00
|
|
|
# This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
# License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
|
|
|
|
|
2011-09-15 00:57:35 +04:00
|
|
|
# File contains users data.
|
|
|
|
#
|
|
|
|
# Each user is a section named with its role
|
|
|
|
# and any number of values. At least email,
|
|
|
|
# password and name should be present.
|
|
|
|
#
|
|
|
|
# Example:
|
|
|
|
# admin:
|
2012-02-22 00:32:51 +04:00
|
|
|
# username: username
|
2011-09-15 00:57:35 +04:00
|
|
|
# password: password
|
|
|
|
# name: Test User
|
|
|
|
#
|
|
|
|
# Still, you are free to add any more data you wish. It will be kept
|
|
|
|
# in the same dictionary.
|
|
|
|
#
|
|
|
|
# Example:
|
|
|
|
# admin:
|
2012-02-22 00:32:51 +04:00
|
|
|
# username: username
|
2011-09-15 00:57:35 +04:00
|
|
|
# password: password
|
|
|
|
# name: Test User
|
2012-02-22 00:32:51 +04:00
|
|
|
# email: email@site.com
|
2011-09-15 00:57:35 +04:00
|
|
|
# some_user_data: data
|
|
|
|
#
|
|
|
|
# The contents of this file are accessible via the pytest-mozwebqa plugin:
|
|
|
|
#
|
|
|
|
# Example:
|
|
|
|
# credentials = mozwebqa.credentials['default']
|
2012-02-22 00:32:51 +04:00
|
|
|
# credentials['username']
|
2011-09-15 00:57:35 +04:00
|
|
|
|
|
|
|
default:
|
2013-05-22 01:15:59 +04:00
|
|
|
email: <value>
|
2011-09-15 00:57:35 +04:00
|
|
|
password: <value>
|
|
|
|
name: <value>
|
2013-05-22 01:15:59 +04:00
|
|
|
api_user: webqa_api_user
|
|
|
|
api_key: a0c050d8-84c8-49f5-963f-97eae922bc48
|