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
Either the deprecation warnings should be updated or the command line argument --sort renamed to match the configuration key. Please let me know which option you prefer, I'm happy to contribute the change myself.
The text was updated successfully, but these errors were encountered:
The warning is displayed as:
> (WARNING) Deprecated option --sort-percentage used, please use
> '--sort-key uncovered-percent' instead.
However, the suggested `--sort-key` option doesn't actually exist and
is really named `--sort` (both in the documentation and the code).
See also: gcovr/gcovr#909
When executing gcovr with
-u
,--sort-uncovered
,-p
or--sort-percentage
gcovr emits a message likeRunning gcovr with
--sort-key uncovered-number
however emits an errorThe actual argument is called
--sort
, not--sort-key
. Seeconfiguration.py
lines 535-549.Either the deprecation warnings should be updated or the command line argument
--sort
renamed to match the configuration key. Please let me know which option you prefer, I'm happy to contribute the change myself.The text was updated successfully, but these errors were encountered: