-
Notifications
You must be signed in to change notification settings - Fork 238
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
Build Statistic Reporting for TeamCity #150
Conversation
👍 |
this works, thanks 👍 |
@@ -6,7 +6,7 @@ | |||
proj = Slather::Project.open(FIXTURES_PROJECT_PATH) | |||
proj.build_directory = TEMP_DERIVED_DATA_PATH | |||
proj.input_format = "profdata" | |||
proj.configure | |||
proj.send(:configure) |
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.
This seems unrelated to the PR. Leftover or am I missing something?
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.
You are correct, this isn't needed.
@michaelmyers Thanks a lot for the PR 👍 Would you mind adding a Changelog entry? |
@neonichu removed unnecessary code and added a changelog entry. Let me know if you need anything else. Thanks for your work on the project! |
Thanks, it's good to go, will merge once Travis is 💚 |
Build Statistic Reporting for TeamCity
Does anyone know when this would be released? |
This does not answer your question but if you want to use it now you can use:
in your Gemfile. |
This adds the flag
--teamcity
and then within thesimple_output
coverage service it leverages the default build statistics for coverage to report the results to TeamCity, a continuous integration server by JetBrains.Example usage would be:
We also can consider cherry-picking joshrlesch's commit from PR 132 which adds support for TeamCity within the
coverall
coverage service to complete the solution.This is my first time with ruby so I am looking forward to feedback.