-
-
Notifications
You must be signed in to change notification settings - Fork 18.2k
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
CLN: Remove unused test code #25670
CLN: Remove unused test code #25670
Conversation
@@ -31,7 +31,6 @@ | |||
assert_series_equal, makeCustomDataframe as mkdf, randbool) | |||
|
|||
_series_frame_incompatible = _bool_ops_syms |
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.
_series_frame_incompatible
can also be removed. AFK for a short while. will remove.
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.
Great thanks as always for the PR. One comment on quick glance - will deep dive into review later
@@ -168,7 +167,15 @@ def test_complex_cmp_ops(self): | |||
for lhs, cmp1, rhs, binop, cmp2 in product(self.lhses, cmp_ops, |
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.
Does it make sense to parametrize this?
I did start but got into a bit of a mess needs fixture isation first
…On Mon, 11 Mar 2019, 17:52 William Ayd, ***@***.***> wrote:
***@***.**** commented on this pull request.
Great thanks as always for the PR. One comment on quick glance - will deep
dive into review later
------------------------------
In pandas/tests/computation/test_eval.py
<#25670 (comment)>:
> @@ -168,7 +167,15 @@ def test_complex_cmp_ops(self):
for lhs, cmp1, rhs, binop, cmp2 in product(self.lhses, cmp_ops,
Does it make sense to parametrize this?
—
You are receiving this because you authored the thread.
Reply to this email directly, view it on GitHub
<#25670 (review)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AMjKXZUpJfRRy4GQGmsHTxwNyUH_sKvLks5vVpfIgaJpZM4bpLXM>
.
|
Codecov Report
@@ Coverage Diff @@
## master #25670 +/- ##
==========================================
+ Coverage 91.29% 91.29% +<.01%
==========================================
Files 173 173
Lines 52961 52961
==========================================
+ Hits 48349 48350 +1
+ Misses 4612 4611 -1
Continue to review full report at Codecov.
|
Codecov Report
@@ Coverage Diff @@
## master #25670 +/- ##
=======================================
Coverage 91.29% 91.29%
=======================================
Files 173 173
Lines 52961 52961
=======================================
Hits 48349 48349
Misses 4612 4612
Continue to review full report at Codecov.
|
thanks @simonjayhawkins |
* master: (22 commits) Fixturize tests/frame/test_operators.py (pandas-dev#25641) Update ValueError message in corr (pandas-dev#25729) DOC: fix some grammar and inconsistency issues in the User Guide (pandas-dev#25728) ENH: Add public start, stop, and step attributes to RangeIndex (pandas-dev#25720) Make Rolling.apply documentation clearer (pandas-dev#25712) pandas-dev#25707 - Fixed flakiness in stata write test (pandas-dev#25714) Json normalize nan support (pandas-dev#25619) TST: resolve issues with test_constructor_dtype_datetime64 (pandas-dev#24868) DEPR: Deprecate box kwarg for to_timedelta and to_datetime (pandas-dev#24486) BUG: Preserve name in DatetimeIndex.snap (pandas-dev#25585) Fix concat not respecting order of OrderedDict (pandas-dev#25224) CLN: remove pandas.core.categorical (pandas-dev#25655) TST/CLN: Remove more Panel tests (pandas-dev#25675) Pinned pycodestyle (pandas-dev#25701) DOC: update date of 0.24.2 release notes (pandas-dev#25699) BUG: Fix error in replace with strings that are large numbers (pandas-dev#25616) (pandas-dev#25644) BUG: fix usage of na_sentinel with sort=True in factorize() (pandas-dev#25592) BUG: Fix to_string output when using header (pandas-dev#16718) (pandas-dev#25602) CLN: Remove unused test code (pandas-dev#25670) CLN: remove Panel from concat error message (pandas-dev#25676) ... # Conflicts: # doc/source/whatsnew/v0.25.0.rst
cc @WillAyd same code as cleaned in #25647
intention originally to just deal with the commented out instance of
pytest.raises
for #24332 but may have gone too far!