-
Notifications
You must be signed in to change notification settings - Fork 79
Stop writing empty files and improve EBI tests #1172
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
Stop writing empty files and improve EBI tests #1172
Conversation
|
@adamrp it looks like there are legitimate test failures |
971fb3d to
6f516ed
Compare
|
Getting the same build failures that are over in #1175. Not sure exactly why this just started to be a problem, but the error message is related to pandas, which had an update on May 11, so I'm suspecting something there. The only thing I could find in the changelog related to this warning being raised is from an 8 Oct 2014 release (version 0.15). Anyways, I think the issue is that because the warning we're looking for isn't the first warning, it's erroring (according to the nympy documentation on assert_warns), so we might have to take a different approach, perhaps something that borrows from this SO post. |
|
Although less desirable, we could also just stick with an older version On (May-13-15|12:45), adamrp wrote:
|
|
I think I've traced the issue to here, but I don't know enough about Pandas to fix the issue. |
|
Ready for review |
qiita_ware/test/test_ebi.py
Outdated
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.
Can you use join instead of string concatenation?
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 can even use the partial function, so it will simplify the following 3 lines.
|
Thanks @adamrp , just a small comment. |
6f516ed to
dd99ee5
Compare
|
Thanks @josenavas, done! |
|
👍 |
Stop writing empty files and improve EBI tests
Fix #1070