-
-
Notifications
You must be signed in to change notification settings - Fork 18.4k
TST: move misplaced modulo test #23827
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
Hello @jbrockmendel! Thanks for submitting the PR.
|
Codecov Report
@@ Coverage Diff @@
## master #23827 +/- ##
=======================================
Coverage 92.29% 92.29%
=======================================
Files 161 161
Lines 51493 51493
=======================================
Hits 47524 47524
Misses 3969 3969
Continue to review full report at Codecov.
|
That seems like a reasonable proposal. |
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.
Not sure if we want to do anything else here, but the move LGTM though.
@@ -597,6 +597,44 @@ def test_operators_frame(self): | |||
tm.assert_series_equal(ts / ts, ts / df['A'], | |||
check_names=False) | |||
|
|||
# TODO: this came from tests.series.test_analytics, needs cleannup and | |||
# de-duplication with test_modulo above |
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.
Do you want to do that todo here?
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.
Un-commited changes in my local branch make this a hassle I'd rather avoid.
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.
yeah let's not increase scope of things, plenty to do already.
lgtm. ex @jorisvandenbossche comment (though certainly fine to do this later). |
Found this while looking at tests for reduction ops. I'm wondering if we should collect+parametrize those over DataFrame/Series/Index/EA the same way we do for arithmetic. Thoughts?