-
-
Notifications
You must be signed in to change notification settings - Fork 18.3k
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 assert_equal from testing.py #16017
MAINT: Remove assert_equal from testing.py #16017
Conversation
Codecov Report
@@ Coverage Diff @@
## master #16017 +/- ##
==========================================
+ Coverage 90.99% 91% +<.01%
==========================================
Files 154 154
Lines 50484 50482 -2
==========================================
- Hits 45940 45939 -1
+ Misses 4544 4543 -1
Continue to review full report at Codecov.
|
@gfyoung can you rebase, I had merged the |
b7fc8bb
to
e808a91
Compare
@jreback , @jorisvandenbossche : Rebased, all green, and ready to merge. |
thanks! |
This method was removed in pandas-dev/pandas#16017 in favor of pytest.raises.
This method was removed in pandas-dev/pandas#16017 in favor of pytest.raises.
This method was removed in pandas-dev/pandas#16017 in favor of pytest.raises.
* TST: Fix broken tests failing with 'NoneType' object is not iterable * MAINT: pandas.util.testing.assertRaises removed This method was removed in pandas-dev/pandas#16089 in favor of pytest.raises. * MAINT: pandas.util.testing.assert_equals removed This method was removed in pandas-dev/pandas#16017 in favor of pytest.raises.
This method was removed in pandas-dev/pandas#16017 in favor of pytest.raises.
This method was removed in pandas-dev/pandas#16017 in favor of pytest.raises.
This method was removed in pandas-dev/pandas#16017 in favor of pytest.raises.
* BUG: oauth2client deprecated, use google-auth instead. Remove the use of oauth2client and use google-auth library, instead. See GH#37. Rather than check for multiple versions of the libraries, use the setup.py to specify compatible versions. I believe this is safe since Pandas checks for the pandas_gbq package. Since google-auth does not use the argparse module to override user authentication flow settings, add a parameter to choose between the web and console flow. Addresses some eventual consistency issues in table/dataset listing in the integration tests. * MAINT: pandas.util.testing.assertRaises removed This method was removed in pandas-dev/pandas#16089 in favor of pytest.raises. * MAINT: pandas.util.testing.assert_equals removed This method was removed in pandas-dev/pandas#16017 in favor of pytest.raises. * DOC: add version tags for new auth_local_webserver params. * CLN: share _test_imports between main module and tests * TST: pin versions on 3.5 rather than 2.7.
Title is self-explanatory.
Partially addresses #15990.