-
Notifications
You must be signed in to change notification settings - Fork 74
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
Simplify slather + coveralls #17
Conversation
@jgavris @rastersize: seems to have worked ;) |
Note that coverage dropped because I excluded the files in |
Thanks @dflems! I'll bump the coverage limit back to 78%. |
@@ -4,10 +4,5 @@ set -euo pipefail | |||
|
|||
bundle exec slather coverage \ | |||
--input-format profdata \ | |||
--cobertura-xml \ | |||
--ignore "../**/*/Xcode*" \ | |||
--output-directory slather-report \ |
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.
We can remove this from the .gitignore
now as well?
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.
Yup. I'll delete that and test that the new limit is working.
Awesome, thanks @dflems! |
👍 Ignore the coverage decrease... |
Remove the completed request objects
We were calling slather twice. The second time, ignore wasn't set properly, so system framework coverage data was being posted to coveralls. This PR should simplify things. If this works, we can close #11.