-
Notifications
You must be signed in to change notification settings - Fork 417
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Set up coveralls code coverage reporting #98
Conversation
|
Conflicts: README.md
Can we merge this? Coverage test would be a good tool for managing the code quality. |
@@ -12,3 +12,6 @@ cd build | |||
cmake .. | |||
make | |||
sudo make install | |||
|
|||
# Code-coverage | |||
sudo apt-get -qq --yes --force-yes install lcov curl |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Maybe delete this and add lcov and curl to the packages list in travis.yml
(assuming that lcov and curl have been whitelisted by Travis CI)? This would allow them to be cached by Travis.
👍 |
@davetcoleman Yeah, I found coverage reporting feature is useful so am using this for DART (another my major open source project) as well. It would be straightforward to setup this feature to moveit thanks to coveralls and coveralls-cmake. Please let me know if there something I could help. |
i've added this to my moveit todo list, will probably ping you later! |
This pull request adds code coverage testing and reporting the result to coveralls.