-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
BUG: testing on windows #15445
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
BUG: testing on windows #15445
Conversation
jreback
commented
Feb 17, 2017
- we are passing builds which actually have an error
- fix the small dtype issue
Codecov Report
@@ Coverage Diff @@
## master #15445 +/- ##
==========================================
- Coverage 90.37% 90.37% -0.01%
==========================================
Files 135 135
Lines 49464 49463 -1
==========================================
- Hits 44704 44703 -1
Misses 4760 4760
Continue to review full report at Codecov.
|
- we are passing builds which actually have an error - fix the small dtype issues Author: Jeff Reback <[email protected]> Closes pandas-dev#15445 from jreback/windows and squashes the following commits: a5b7fb3 [Jeff Reback] change integer to power comparisions eab15c4 [Jeff Reback] don't force remove pandas cf3b9bd [Jeff Reback] more windows fixing efe6a76 [Jeff Reback] add cython to build 8194e63 [Jeff Reback] don't use appveyor recipe, just build inplace e064825 [Jeff Reback] TST: resample dtype issue xref pandas-dev#15418 10d9b26 [Jeff Reback] TST: run windows tests so failures show up in appeveyor
@@ -13,8 +13,7 @@ def test_boolean_indexing(self): | |||
[0, 1, 2, 10, 4, 5, 6, 7, 8, 9], | |||
[10, 10, 10, 3, 4, 5, 6, 7, 8, 9]] | |||
for cond, data in zip(conditions, expected_data): | |||
result = df.copy() | |||
result.loc[cond, 'x'] = 10 | |||
result = df.assign(x=df.mask(cond, 10).astype('int64')) |
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.
@jreback do you remember what motivated this change? it makes it harder to tell what is being tested