-
-
Notifications
You must be signed in to change notification settings - Fork 18.5k
MAINT: Remove self.assert_* from testing #16076
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
MAINT: Remove self.assert_* from testing #16076
Conversation
Codecov Report
@@ Coverage Diff @@
## master #16076 +/- ##
=======================================
Coverage 90.84% 90.84%
=======================================
Files 159 159
Lines 50791 50791
=======================================
Hits 46143 46143
Misses 4648 4648
Continue to review full report at Codecov.
|
thanks! you might want to actually add (and friends)
to |
I'm getting to it actually. But there's more to do before I do 😁 |
* MAINT: Remove self.assert_almost_equal from testing * MAINT: Remove self.assert_index_equal from testing * MAINT: Remove self.assert_categorical_equal from testing * MAINT: Remove self.assert_numpy_array_equal from testing * MAINT: Remove self.assert_series_equal from testing * MAINT: Remove self.assert_frame_equal from testing * MAINT: Remove self.assert_produces_warning from testing
Title is self-explanatory.
We should be using
tm.assert_*
instead (they are static methods after all) and shouldn't really be invoked by the test instance.Partially addresses #15990.