Currently, there is a setting to adjust the command called for PHPUnit. However, when debugging tests the PHP args seem to change to add XDebug args and there doesn't seem to be a way to configure those args separately so that I won't be passing manually entered XDebug args even when I'm only running the tests instead of debugging by adjusting this setting. Specifically, I have an "exclude" entry in my launch.json. But when I debug tests, the command that gets called to do so doesn't use my launch.json configuration. This causes the debugger to break on various exceptions inside of libraries and such that it otherwise would not if I started the Listen for Xdebug launch.json profile.
Is there a way to configure XDebug PHP debugger arguments/options like "exclude" for debugging PHPUnit tests via the extension features? Thanks!