-
Notifications
You must be signed in to change notification settings - Fork 61
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
refactor to phpunit 10 event system #565
Conversation
bb5b6dd
to
12c3c2e
Compare
return; | ||
} | ||
|
||
if (null !== $this->pid || !in_array('webserver', $suite->getGroups())) { |
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.
we used to check the groups of the test suite, but that seems not available with phpunit 10. is there a way to know which groups a test suite includes?
12c3c2e
to
7c4f5e7
Compare
7c4f5e7
to
d06ce3f
Compare
if sebastianbergmann/phpunit#5769 gets solved, we can improve the setup. meanwhile i will merge, the overhead of starting |
}, | ||
"conflict": { | ||
"toflar/psr6-symfony-http-cache-store": "<2.2.1", | ||
"phpunit/phpunit": "<8" | ||
"phpunit/phpunit": "<10" |
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.
It is strange that I can not use the 3.x
package when my PHPUnit version is 9.6
which is still a widely. used version of PHPUnit.
I would like to avoid this conflict think most of the people will not require a test besed on the WebServerSubscriber
and so this should only be a softrequirement.
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.
i think you are right.
fixed in 24a47d5
fix #561