**Symfony version(s) affected**: 4.1.5 **Description** When I define env variables in the phpunit.xml.dist: ```xml <php> <env name="MY_ENV" value="Tests"/> </php> ``` the env are not available when giving a directory for run parallel testsuites: **How to reproduce** ```bash bin/simple-phpunit path ``` ```php echo getenv('MY_ENV'); // false ``` The following works: ```bash bin/simple-phpunit -c path/to/phpunit.xml.dist ``` ```php echo getenv('MY_ENV'); // returns 'Tests' ``` **EDIT** Repository to reproduce the error: https://github.com/alexander-schranz/symfony-phpunit-test **Possible Solution** ~~Currently not sure as I did not foundout how the parallel tests are done?~~ see https://github.com/symfony/symfony/pull/28995