Skip to content

0.0.7: Fix code coverage support (#30)

Compare
Choose a tag to compare
@thomas-moulard thomas-moulard released this 12 Nov 04:36
· 533 commits to master since this release
110ad99
There was a logical error in the code. Instead of writing:

array1 = array1.concat(array2);

...to append array2 to array1. The code was:

array1.concat(array2);

...which does not do anything.

As a result, it was impossible to actually use a mixin.

This also fixes another issue: colcon lcov-result is failling for
packages without coverage info, so we need to pass --packages-select
when running it.

Signed-off-by: Thomas Moulard <tmoulard@amazon.com>