Closed
Description
Q | A |
---|---|
Bug report? | yes |
Feature request? | no |
BC Break report? | yes |
RFC? | no |
Symfony version | 2.7.39 |
Behat tests started failing because of this issue (see here).
The following command started displaying a help message, instead of running the test suite:
behat --no-colors -sbig_brother -fpretty --format-settings='{\"paths\": true}' features
The cause of the issue seems to be #24987 which allowed grouping short options. -sbig_brother
contains the "h" letter which is treated as -h
and the Application
assumes it needs to display a help message:
symfony/src/Symfony/Component/Console/Application.php
Lines 164 to 172 in 7b4d519