-
-
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
Run Isort on tests/series single pr #23344
Conversation
Hello @thoo! Thanks for updating the PR.
|
pandas/tests/series/test_api.py
Outdated
@@ -698,7 +697,7 @@ def test_dt_accessor_api_for_categorical(self): | |||
|
|||
test_data = [ | |||
("Datetime", get_ops(DatetimeIndex), s_dr, c_dr), | |||
("Period", get_ops(PeriodIndex), s_pr, c_pr), | |||
("Period", get_ops(PeriodArray), s_pr, c_pr), |
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.
? did u mean to change
@@ -856,17 +855,33 @@ def test_construction_consistency(self): | |||
result = Series(s.values, dtype=s.dtype) | |||
tm.assert_series_equal(result, s) | |||
|
|||
def test_constructor_infer_period(self): |
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.
these were added?
@@ -1,4 +1,5 @@ | |||
import pytest |
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.
needs to update setup.cfg
59ad294
to
2886d05
Compare
…_series_pr1 * repo_org/master: TST: Fix test assertion (pandas-dev#23357) BUG: Handle Period in combine (pandas-dev#23350) REF: SparseArray imports (pandas-dev#23329) CI: Migrate some CircleCI jobs to Azure (pandas-dev#22992) DOC: update the is_month_start/is_month_end docstring (pandas-dev#23051)
…_series_pr1 * repo_org/master: DOC: Add docstring validations for "See Also" section (pandas-dev#23143)
Codecov Report
@@ Coverage Diff @@
## master #23344 +/- ##
=======================================
Coverage 92.22% 92.22%
=======================================
Files 169 169
Lines 51261 51261
=======================================
Hits 47277 47277
Misses 3984 3984
Continue to review full report at Codecov.
|
@jreback For this one, I have to drop |
thanks @thoo |
git diff upstream/master -u -- "*.py" | flake8 --diff
Run
isort -rc pandas/tests/series/