catkin / catkin_tools

Command line tools for working with catkin
Apache License 2.0
163 stars 146 forks source link

unrecognized argument --limit-status-rate #698

Closed YannickdeHoop closed 2 years ago

YannickdeHoop commented 2 years ago

System Info

Build / Run Issue

Expected Behavior

Actual Behavior

catkin: error: unrecognized arguments: --limit-status-rate 0.5

Steps to Reproduce the Issue

catkin run_tests <package> --no-dep -j1 --limit-status-rate 0.5
timonegk commented 2 years ago

The reason for the issue is that in version 0.8.0, a new verb, catkin test was added that makes testing packages easier (for example the output is more helpful and you don't have to run catkin_test_results manually). run_tests is now an alias for this new verb, and I forgot to add the --limit-status-rate option. I will add it and will release a new version with the fix later today. Thanks for reporting!