-
-
Notifications
You must be signed in to change notification settings - Fork 10.9k
MAINT: Fix some typos in a code string and comments #7134
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
Conversation
Wow, thank you! @homu: r+ |
📌 Commit 73a2fd1 has been approved by |
…mith MAINT: Fix some typos in a code string and comments
💔 Test failed - status |
Huh, those are some weird failures that travis is throwing up :-/ I don't see how they can possibly be related to this PR, but does anyone know what's going on? that's 4 errors over 2 builds, 3 different error messages :-/ |
In
|
In
|
I think I found the reason. Travis CI fails to install the required software due to network traffics (maybe the aftereffect of today's GitHub errors).
|
@@ -15,14 +15,14 @@ | |||
get_b_from_python | |||
if (successful) { | |||
|
|||
callfortran | |||
if (succesful) { | |||
call_fortran |
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 one shouldn't be changed I think - callfortran
is used a lot in the rest of this file.
nice cleanup, thanks @dongjoon-hyun |
Github went down hard for about five hours at ~5:20 PM MST yesterday and it took a while to recover. |
☀️ Test successful - status |
Oh, thank you for merging! |
@njsmith I don't like that auto-merge trick - having a bot as commit author is just wrong. plus practical reasons, like it's confusing and messes with commits counts etc. |
Hmm, not sure what happened here this time -- I feel like it should have given up once the first build failed. (Did someone hit the "rerun this build" button on Travis or something?) The useful bits about the bot are that (1) it gives a way to say "merge if tests pass" sitting around and waiting for them, which is why I used it this time, and (2) by testing before merging it guarantees that master always passes tests (because -- unlike normal Travis runs -- it actually tests the merge that's being committed, instead of some merge with whatever matter looked at when the PR was first submitted, maybe weeks ago). There are a number of projects that use it exclusively for these reasons (esp. in the rust ecosystem). The annoying things are, it's too chatty, and it doesn't support appveyor, so meh. I guess I could add it not setting the "committed by" field properly to my mental list of grievances? I'm not sure what to do with it being "just wrong" and "confusing" -- it definitely solves some real technical problems for some cases -- and I feel like I care more about prompt and rigorous testing than about commit counting tools, but yeah, it's definitely not an obvious 100% win :-/. Maybe with some fixes it could be... |
Well, in this case it merged an open PR after I had made a comment on it. That confused me (I only noticed because of the "thanks for merging" comment), and is definitely not the right thing to do. And |
Yeah, like I said I have no idea why it did that :-/ the logic is supposed
|
On Fri, Jan 29, 2016 at 2:49 AM, Nathaniel J. Smith <
I reran the tests. When github came back on line tests failed because not Chuck |
Hi, all, Sorry for interrupting your discussion.
How can I recover the |
@dongjoon-hyun no worries. A new PR for that would be good. |
Okay, thank you, @rgommers . I'll make a new
|
It was committed mistakenly in numpy#7134. `callfortran` is used a lot really.
@charris: Ahhh, okay, at least now we know what happened :-) Pretty weird edge case here... |
It was committed mistakenly in numpy#7134. `callfortran` is used a lot really.
No description provided.