-
-
Notifications
You must be signed in to change notification settings - Fork 86
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
Explore PHPUnit gte 10 support #737
Merged
Merged
Conversation
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
The Core PHPUnit suite supports, at most, PHPUnit 9.5. This code scaffolds a first attempt at supporting PHPUnit version 10 and 11, the curent latest one, adding as little destruction as possible. This will not likely deal with all the intricacies of it, but will open the door to supporting the latest versions of Codeception and its modules supporting the latest versions of PHPUnit.
This PR is stale because it has been open 20 days with no activity. Remove stale label or comment or this will be closed in 10 days. |
lucatume
force-pushed
the
v4-phpunit-gte-10-support
branch
from
July 30, 2024 06:26
cd94796
to
1d3b768
Compare
lucatume
force-pushed
the
v4-phpunit-gte-10-support
branch
2 times, most recently
from
July 31, 2024 06:51
e316e85
to
4a6e2e2
Compare
refactor(LoopIsolation) better output
lucatume
force-pushed
the
v4-phpunit-gte-10-support
branch
from
July 31, 2024 13:06
4a6e2e2
to
b1553ba
Compare
lucatume
force-pushed
the
v4-phpunit-gte-10-support
branch
from
August 1, 2024 07:59
f7a5a88
to
6a45900
Compare
lucatume
force-pushed
the
v4-phpunit-gte-10-support
branch
2 times, most recently
from
August 16, 2024 06:17
e095d47
to
144b80a
Compare
Add the MysqlServerController extension, and related support classes to download, initialize and start a local MySQL Community Server on the machine. Together with the work in there, improve the `UopzFunctions` trait to return Closure to unset the mocks.
lucatume
force-pushed
the
v4-phpunit-gte-10-support
branch
from
August 17, 2024 10:11
144b80a
to
2493a3d
Compare
Avoid the "arguments list too long" error on `proc_open` due to the large context to pass over in tests.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
The project tracks the PHPUnit-based Core test unit.
That is supporting PHPUnit
9.5
at the most.This PR explores first functional support for PHPUnit version
10.0
and later in the context ofwp-browser
resolves #736.