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
Add Microsoft Windows support (#37)
On Windows, we do not run `rosdep update' because it will not run
properly (os.geteuid() is missing, and sudo is not available).
We also stop relying on '*' in NPM scripts defined in package.json as
they are not expended in a similar way on Windows.
Signed-off-by: Thomas Moulard <tmoulard@amazon.com>
Fix code coverage support (#30)
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>