Dduvall has uploaded a new change for review. https://gerrit.wikimedia.org/r/232399
Change subject: Support additional LocalSettings.php for mw-selenium jobs ...................................................................... Support additional LocalSettings.php for mw-selenium jobs Append the local MW installation's `LocalSettings.php` with settings from the MW-Selenium test suite if they exist. See I2f32701dd9478857ed5a2fb1bfbe13e134d7b27c for the supporting JJB changes. Change-Id: I4975a99f1c7d22c2f99f4557de4d7a081a5300f4 --- M bin/mw-selenium-setup.sh 1 file changed, 5 insertions(+), 0 deletions(-) git pull ssh://gerrit.wikimedia.org:29418/integration/jenkins refs/changes/99/232399/1 diff --git a/bin/mw-selenium-setup.sh b/bin/mw-selenium-setup.sh index 949f2f9..284cdda 100755 --- a/bin/mw-selenium-setup.sh +++ b/bin/mw-selenium-setup.sh @@ -3,3 +3,8 @@ . /srv/deployment/integration/slave-scripts/bin/mw-set-env-mw-selenium.sh mkdir -p "$TMPDIR" + +# Append LocalSettings.php with any test-suite specific settings +if [ -f LocalSettings.php ]; then + cat LocalSettings.php >> "$MW_INSTALL_PATH/LocalSettings.php" +fi -- To view, visit https://gerrit.wikimedia.org/r/232399 To unsubscribe, visit https://gerrit.wikimedia.org/r/settings Gerrit-MessageType: newchange Gerrit-Change-Id: I4975a99f1c7d22c2f99f4557de4d7a081a5300f4 Gerrit-PatchSet: 1 Gerrit-Project: integration/jenkins Gerrit-Branch: master Gerrit-Owner: Dduvall <[email protected]> _______________________________________________ MediaWiki-commits mailing list [email protected] https://lists.wikimedia.org/mailman/listinfo/mediawiki-commits
