-
-
Notifications
You must be signed in to change notification settings - Fork 35
Updated to newest robo and joomla testing robo dependencies #123
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
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
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 hidden or 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 |
|---|---|---|
| @@ -1,6 +1,6 @@ | ||
| language: php | ||
| php: | ||
| - 5.4 | ||
| - 5.5 | ||
| before_script: | ||
| - composer install | ||
|
|
||
|
|
||
This file contains hidden or 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 hidden or 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 |
|---|---|---|
| @@ -1,29 +1,29 @@ | ||
| { | ||
| "name": "joomla-projects/joomla-browser", | ||
| "description": "joomla-browser Codeception Module", | ||
| "keywords":["BDD", "acceptance testing", "tdd", "joomla"], | ||
| "homepage":"https://docs.joomla.org/Testing_Joomla_Extensions_with_Codeception", | ||
| "license": "GPL-2.0+", | ||
| "authors": [ | ||
| "name" : "joomla-projects/joomla-browser", | ||
| "description" : "joomla-browser Codeception Module", | ||
| "keywords" : ["BDD", "acceptance testing", "tdd", "joomla"], | ||
| "homepage" : "https://docs.joomla.org/Testing_Joomla_Extensions_with_Codeception", | ||
| "license" : "GPL-2.0+", | ||
| "authors" : [ | ||
| { | ||
| "name": "Puneet Kala", | ||
| "email": "puneet.kala@community.joomla.org" | ||
| "name" : "Puneet Kala", | ||
| "email" : "puneet.kala@community.joomla.org" | ||
| }, | ||
| { | ||
| "name": "Javier Gomez", | ||
| "email": "javier.gomez@community.joomla.org" | ||
| "name" : "Javier Gomez", | ||
| "email" : "javier.gomez@community.joomla.org" | ||
| } | ||
| ], | ||
| "require": { | ||
| "php": ">=5.3.0" | ||
| "php" : ">=5.5.9", | ||
| "consolidation/robo" : "~1" | ||
| }, | ||
| "require-dev": { | ||
| "codegyre/robo": "^0.5.3", | ||
| "joomla-projects/robo": "dev-master" | ||
| "joomla-projects/joomla-testing-robo" : "~1.0" | ||
| }, | ||
| "autoload": { | ||
| "psr-4": { | ||
| "Codeception\\Module\\": "src" | ||
| "Codeception\\Module\\" : "src" | ||
| } | ||
| } | ||
| } | ||
Oops, something went wrong.
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.
According to the new requirements in the latest
consolidation/robosource and some Symfony dependencies, I see no way but to upgrade the requirement of Joomla Browser (Robo-based) to a minimum of PHP 5.5.9.That means we will limit the environments a Robo script can run in to 5.5.9 and above.
However, if we really need to add PHP 5.3 and 5.4 for testing purposes, we could later do workarounds in the actual testing scripts (not the Docker-based environment since that one should run in latest PHP 7.x) so they can run in such PHP versions.
Leaving it for discussion @yvesh @javigomez @puneet0191
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.
On a second thought, no workaround will be needed after all, since all Selenium clients (with Robo) will run in latest PHP 7.x, while only servers will vary Joomla version, so it should not be an impediment for anything.