-
-
Notifications
You must be signed in to change notification settings - Fork 192
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
Re-enable testing with the Drush Behat Endpoint. #506
Open
greg-1-anderson
wants to merge
20
commits into
jhedstrom:main
Choose a base branch
from
greg-1-anderson:enable-drush-behat-endpoint
base: main
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
20 commits
Select commit
Hold shift + click to select a range
dea560a
Re-enable testing with the Drush Behat Endpoint. Drupal style checks …
greg-1-anderson 36283b9
Explicitly set root when checking for the behat extension
greg-1-anderson 5c8c9bf
'composer require' does not do '--no-dev'
greg-1-anderson 8230828
Use either the 8.x or 9.x version of the Behat Drupal Extension depen…
greg-1-anderson 65693c3
Fix parenthesis
greg-1-anderson 9fcf68c
Diferentiate Drupal 7 and Drupal 8 tests for 'behat' command
greg-1-anderson 0a30309
Throw in some diagnostics
greg-1-anderson 6423fa6
More diagnostics
greg-1-anderson 96a1fab
More diagnostics
greg-1-anderson 1374c5e
Set minimum stability for Drush
greg-1-anderson 77a574a
Drush 9 dev another way
greg-1-anderson 8d6ffc0
Rebuild with unbound version in our drupal-driver dependency.
greg-1-anderson fa6a8ce
Remove unnecessary installation of drupal-driver in .travis.yml
greg-1-anderson 9d6cdee
Run the Drupal 8 tests when testing the Behat Drush Endpoint on Drupal 8
greg-1-anderson 53f7c69
A different way
greg-1-anderson 8462cff
Remove mail context from Drush driver test
greg-1-anderson 2719f57
Use dev version of drupal driver
greg-1-anderson 25b6595
Use dev-master now that PR has been merged
greg-1-anderson ba13fbc
Use 2.0.0-alpha5 of drupal-driver
greg-1-anderson 17ec5e7
Require the stable version of Drush now that it has been released.
greg-1-anderson 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ | |
"behat/mink-extension": "~2.0", | ||
"behat/mink-goutte-driver": "~1.0", | ||
"behat/mink-selenium2-driver": "~1.1", | ||
"drupal/drupal-driver": "^2.0.0", | ||
"drupal/drupal-driver": "^2.0.0-alpha5", | ||
"symfony/dependency-injection": "~3.0", | ||
"symfony/event-dispatcher": "~3.0" | ||
}, | ||
|
@@ -42,9 +42,9 @@ | |
"composer validate --no-interaction", | ||
"parallel-lint src spec features fixtures", | ||
"phpcs --standard=./phpcs-ruleset.xml -p", | ||
"phpcs --standard=./phpcs-drupal-ruleset.xml -p", | ||
"npm test", | ||
"phpspec run -f pretty --no-interaction" | ||
"phpspec run -f pretty --no-interaction", | ||
"phpcs --standard=./phpcs-drupal-ruleset.xml -p" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. This bit can be undone now I think. |
||
] | ||
}, | ||
"autoload": { | ||
|
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.
This should go back to
^2.0.0
I think?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.
To
^2.1.0
now to matchmaster
.