-
Notifications
You must be signed in to change notification settings - Fork 95
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
[FIX][TST] Adds curl installation where needed #390
Conversation
Codecov Report
@@ Coverage Diff @@
## master #390 +/- ##
=========================================
Coverage ? 81.17%
=========================================
Files ? 41
Lines ? 2380
Branches ? 0
=========================================
Hits ? 1932
Misses ? 448
Partials ? 0 Continue to review full report at Codecov.
|
@tsalo I don't know why it says I cancelled your review but I do in fact want it. |
@@ -277,6 +281,7 @@ jobs: | |||
- run: | |||
name: Merge coverage files | |||
command: | | |||
apt-get install -y 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.
Is this one necessary?
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.
Unbelievably, yes. Codecov uses curl to upload the report, that’s why it kept failing.
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.
Weird, but good to know.
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.
LGTM.
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.
Thank you, @jbteves ! 🎇
Adds curl installation where needed. NOTE: curl does not come pre-installed on the miniconda3 image that we use. NOTE: merge_coverage requires curl even though it is never explicitly called because codecov uses curl to upload the report.
Closes #388 .
Changes proposed in this pull request: