You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, xDebug:v3 has introduced the XDEBUG_MODE environment variable to turn xDebug on and off.
In context where you spawn child processes like ParaTest env vars are easier to handle and propagate to external procs than custom ini settings passed as options to the php-cli binary (i.e. php -d pcov.enabled=1).
There is no standardized way to propagate ini options, so now we need to explicitly tell them like:
Hi, xDebug:v3 has introduced the
XDEBUG_MODE
environment variable to turn xDebug on and off.In context where you spawn child processes like ParaTest env vars are easier to handle and propagate to external procs than custom
ini
settings passed as options to the php-cli binary (i.e.php -d pcov.enabled=1
).There is no standardized way to propagate
ini
options, so now we need to explicitly tell them like:Env vars on the contrary are simple to propagate, so in the context of xDebug it's easier:
Would it be possible to introduce a
PCOV_ENABLED
env var to enable/disable pcov?The text was updated successfully, but these errors were encountered: