-
-
Notifications
You must be signed in to change notification settings - Fork 38
Allow PHP 5.4 to fail #31
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
Allow PHP 5.4 to fail #31
Conversation
clue
left a comment
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.
Interesting find 👍 I'm not too concerned with this legacy PHP version, but maybe we can postpone this for later once the other outstanding issues have been fixed and we can look into this again? (either triage this further and fix this or maybe drop support entirely)
|
Dropping |
|
The supported version should be bumped to PHP7, as the official support for PHP5 is running out this year (31 Dec 2018), so it doesn't make much sense to support PHP5 for long. Plus you won't use react components on webspaces (where you're stuck with old versions). :) |
PHPUnit on PHP 5.4 seems to hang at the end of it's execution for no apparent reason. (Even when successful.)
1dd8715 to
f0b900a
Compare
|
@CharlotteDunois Yup, it's one of the things I want to do for |
|
@clue We have two possible paths here: a) We merge this and rebase the other PR's and merge those as well, and then release b) Go down the rabbithole and figure out why it hangs under certain specific conditions, and delay My preference goes out to a). |
|
@WyriHaximus I'm not too concerned about legacy PHP 5.4, but I wonder why the same issue seems to manifest itself with PHP 7.1 as well and not any other tested PHP version? The test output suggests that the tests run just fine and yet the PHP engine is somehow left in a "stuck" state and won't exit? That being said, this PR makes the test suite pass on all other versions at least (finally green again!). As such, I would rather not block this PR and leave this decision up to you to fix this at a later time |
Same here, and I would prefer dropping
Cheers |
PHPUnit on PHP 5.4 seems to hang at the end of it's execution for no apparent reason. (Even when successful.)