-
-
Notifications
You must be signed in to change notification settings - Fork 230
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Support for logging
section in phpunit.xml
#72
Comments
I've looked in the code, but I can't seem to find the a link between parameters read from Also is phpunit invoked via command-line or via a special runner, where you can set even options, that can't be set from |
When I implemented the coverage options, I didn't even think about the phpunit.xml, so there won't be any link between the logging-section in the phpunit.xml and the coverage-options that paratest uses. But it would make sense, I agree ;) Paratest invokes phpunit from the normal command line interface (so no fancy private options ^^) but it should nevertheless be possible for paratest to parse the phpunit.xml, extract the coverage-entries and handle them just like "paratest --coverage-html" etc. ... I guess |
@julianseeger , do you pass This way coverage type will be specified in command-line, but coverage options (e.g. highlight/lowUpperBound/etc) will be used from |
I don't know if Paratest passes --configuration. |
I know, that according to docs the
logging
section (see http://phpunit.de/manual/3.7/en/appendixes.configuration.html) ofphpunit.xml
file isn't supported.Example:
It would be great if at least coverage-related logging would be supported as well to compliment
--coverage-html
,--coverage-clover
and--coverage-php
command-line options.The text was updated successfully, but these errors were encountered: