How do I clean colcon test results?
I have multiple packages I'm developing on, and I'd like to see test results for one package, even if another has previously failed tests. How do I do this?
I have run colcon test --packages-select package_a
previously, so the package a test results are in my build tree. I then want to run tests on package b, so I run colcon test --packages-select package_b; colcon test-result --verbose
. But this shows the test results from both packages. Is there a way to view only the test results from the newly-tested package? Is there some sort of way to clean out all test results without outright deleting my build folder?