mirror of
https://gerrit.wikimedia.org/r/mediawiki/extensions/MultimediaViewer
synced 2024-11-16 20:35:09 +00:00
13adb73273
We used to rely on the env variable BROWSER_USERAGENT for tests
requiring a customer user agent. 2c3ac55a6
got rid of it in favor of
loading the :browser_useragent from environments.yml where it has not
been set. That in turns caused tests to fail with:
"missing configuration for browser_useragent"
Set browser_useragent to 'test-user-agent' in the environments.yml
Also drop unused test2 env and add mediawiki-org
Bug: T128064
Change-Id: I720d590505dd5e30c6e9435de456563b8d36f9ea
43 lines
1.1 KiB
YAML
43 lines
1.1 KiB
YAML
# Customize this configuration as necessary to provide defaults for various
|
|
# test environments.
|
|
#
|
|
# The set of defaults to use is determined by the MEDIAWIKI_ENVIRONMENT
|
|
# environment variable.
|
|
#
|
|
# export MEDIAWIKI_ENVIRONMENT=mw-vagrant-host
|
|
# bundle exec cucumber
|
|
#
|
|
# Additional variables set by the environment will override the corresponding
|
|
# defaults defined here.
|
|
#
|
|
# export MEDIAWIKI_ENVIRONMENT=mw-vagrant-host
|
|
# export MEDIAWIKI_USER=Selenium_user2
|
|
# bundle exec cucumber
|
|
#
|
|
mw-vagrant-host: &default
|
|
browser_useragent: test-user-agent
|
|
user_factory: true
|
|
mediawiki_url: http://127.0.0.1:8080/wiki/
|
|
|
|
mw-vagrant-guest:
|
|
user_factory: true
|
|
mediawiki_url: http://127.0.0.1/wiki/
|
|
|
|
beta:
|
|
browser_useragent: test-user-agent
|
|
mediawiki_url: http://en.wikipedia.beta.wmflabs.org/wiki/
|
|
mediawiki_user: Selenium_user
|
|
# mediawiki_password: SET THIS IN THE ENVIRONMENT!
|
|
|
|
mediawiki-org:
|
|
browser_useragent: test-user-agent
|
|
mediawiki_url: http://mediawiki.org/wiki/
|
|
mediawiki_user: Selenium_user
|
|
# mediawiki_password: SET THIS IN THE ENVIRONMENT!
|
|
|
|
integration:
|
|
user_factory: true
|
|
# mediawiki_url: THIS WILL BE SET BY JENKINS
|
|
|
|
default: *default
|