-
Notifications
You must be signed in to change notification settings - Fork 11
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
EWPP-1165: Add support for update-related parameters in site install command. #153
Open
sergepavle
wants to merge
12
commits into
2.x
Choose a base branch
from
EWPP-1165
base: 2.x
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
a659aef
EWPP-1165: Add support of 'enable_update_status_module' and 'enable_u…
sergepavle a869eee
EWPP-1165: Add test coverage for new installation arguments.
sergepavle 6394d34
EWPP-1165: Adjust indentation for option name description and improve…
sergepavle e5eb1f1
EWPP-1165: Simplify passing values for new parameter of site-install …
sergepavle f8f2951
EWPP-1165: Reorganise code for adapting drush site-install arguments.
sergepavle c7722c7
EWPP-1165: Add missed test case in fixture.
sergepavle 2fecfec
EWPP-1165: Fix expander version to ensure backwards compatibility.
imanoleguskiza 446cfa6
Merge branch '2.x' into EWPP-1165
ademarco f32d195
EWPP-1165: Fix test by changing default values to true, when empty co…
ademarco 1e99677
EWPP-1165: Let grasmash/expander free to float.
ademarco 123dbcf
EWPP-1165: Make sure we use latest version of expander.
ademarco f03f341
EWPP-1165: Remove _readme section in composer.json.
ademarco File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,6 +8,7 @@ | |
composer: '' | ||
contains: | ||
- "[Simulator] Running ./vendor/bin/drush -y --root=$(pwd)/build --site-name='Site name' [email protected] --locale=en [email protected] --account-name=admin --account-pass=admin --sites-subdir=default --db-url='mysql://root:[email protected]:3306/drupal' site-install standard" | ||
- "site-install standard install_configure_form.enable_update_status_module=true install_configure_form.enable_update_status_emails=true" | ||
|
||
- command: 'drupal:site-install --site-name="Test site"' | ||
configuration: | ||
|
@@ -374,3 +375,111 @@ | |
composer: '' | ||
contains: | ||
- "./vendor/bin/drush --root=foo" | ||
|
||
- command: 'drupal:site-install --enable-update-status-module=false --enable-update-status-emails=false' | ||
configuration: {} | ||
composer: '' | ||
contains: | ||
- "standard install_configure_form.enable_update_status_module=NULL install_configure_form.enable_update_status_emails=NULL" | ||
|
||
- command: 'drupal:site-install --enable-update-status-module= --enable-update-status-emails=' | ||
configuration: {} | ||
composer: '' | ||
contains: | ||
- "standard install_configure_form.enable_update_status_module=NULL install_configure_form.enable_update_status_emails=NULL" | ||
|
||
- command: 'drupal:site-install --enable-update-status-module=true --enable-update-status-emails=true' | ||
configuration: {} | ||
composer: '' | ||
contains: | ||
- "standard install_configure_form.enable_update_status_module=true install_configure_form.enable_update_status_emails=true" | ||
|
||
- command: 'drupal:site-install' | ||
configuration: | ||
drupal: | ||
install: | ||
update_status_module: false | ||
update_status_emails: ~ | ||
composer: '' | ||
contains: | ||
- "standard install_configure_form.enable_update_status_module=NULL install_configure_form.enable_update_status_emails=true" | ||
|
||
- command: 'drupal:site-install' | ||
configuration: | ||
drupal: | ||
install: | ||
update_status_module: 'false' | ||
update_status_emails: '' | ||
composer: '' | ||
contains: | ||
- "standard install_configure_form.enable_update_status_module=NULL install_configure_form.enable_update_status_emails=NULL" | ||
|
||
- command: 'drupal:site-install' | ||
configuration: | ||
drupal: | ||
install: | ||
update_status_module: "false" | ||
update_status_emails: "" | ||
imanoleguskiza marked this conversation as resolved.
Show resolved
Hide resolved
|
||
composer: '' | ||
contains: | ||
- "standard install_configure_form.enable_update_status_module=NULL install_configure_form.enable_update_status_emails=NULL" | ||
|
||
- command: 'drupal:site-install' | ||
configuration: | ||
drupal: | ||
install: | ||
update_status_module: true | ||
update_status_emails: ~ | ||
composer: '' | ||
contains: | ||
- "standard install_configure_form.enable_update_status_module=true install_configure_form.enable_update_status_emails=true" | ||
|
||
- command: 'drupal:site-install' | ||
configuration: | ||
drupal: | ||
install: | ||
update_status_module: 'true' | ||
update_status_emails: '' | ||
composer: '' | ||
contains: | ||
- "standard install_configure_form.enable_update_status_module=true install_configure_form.enable_update_status_emails=NULL" | ||
|
||
- command: 'drupal:site-install' | ||
configuration: | ||
drupal: | ||
install: | ||
update_status_module: "true" | ||
update_status_emails: "" | ||
composer: '' | ||
contains: | ||
- "standard install_configure_form.enable_update_status_module=true install_configure_form.enable_update_status_emails=NULL" | ||
|
||
- command: 'drupal:site-install' | ||
configuration: | ||
drupal: | ||
install: | ||
update_status_module: ~ | ||
update_status_emails: true | ||
composer: '' | ||
contains: | ||
- "standard install_configure_form.enable_update_status_module=true install_configure_form.enable_update_status_emails=true" | ||
|
||
- command: 'drupal:site-install' | ||
configuration: | ||
drupal: | ||
install: | ||
update_status_module: '' | ||
update_status_emails: 'true' | ||
composer: '' | ||
contains: | ||
- "standard install_configure_form.enable_update_status_module=NULL install_configure_form.enable_update_status_emails=true" | ||
|
||
- command: 'drupal:site-install' | ||
configuration: | ||
drupal: | ||
install: | ||
update_status_module: "" | ||
update_status_emails: "true" | ||
composer: '' | ||
contains: | ||
- "standard install_configure_form.enable_update_status_module=NULL install_configure_form.enable_update_status_emails=true" |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shoudln't we just ^3?