-
-
Notifications
You must be signed in to change notification settings - Fork 18.6k
TST: test addl feather dtypes #16004
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
@@ -80,6 +79,9 @@ def test_unsupported(self): | |||
df = pd.DataFrame({'a': pd.period_range('2013', freq='M', periods=3)}) | |||
self.check_error_on_write(df, ValueError) | |||
|
|||
df = pd.DataFrame({'a': pd.timedelta_range('1 day', periods=3)}) | |||
self.check_error_on_write(df, FeatherError) |
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.
@wesm this is supported in pyarrow 0.3, but testing for completeness 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.
Can you add a unit test to Arrow to verify?
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.
sure
Codecov Report
@@ Coverage Diff @@
## master #16004 +/- ##
=======================================
Coverage 91.02% 91.02%
=======================================
Files 145 145
Lines 50391 50391
=======================================
Hits 45870 45870
Misses 4521 4521
Continue to review full report at Codecov.
|
Codecov Report
@@ Coverage Diff @@
## master #16004 +/- ##
=======================================
Coverage 91.02% 91.02%
=======================================
Files 145 145
Lines 50391 50391
=======================================
Hits 45870 45870
Misses 4521 4521
Continue to review full report at Codecov.
|
Codecov Report
@@ Coverage Diff @@
## master #16004 +/- ##
=======================================
Coverage 91.02% 91.02%
=======================================
Files 145 145
Lines 50391 50391
=======================================
Hits 45870 45870
Misses 4521 4521
Continue to review full report at Codecov.
|
…mplemented xref pandas-dev/pandas#16004 Author: Jeff Reback <[email protected]> Closes #551 from jreback/timedelta and squashes the following commits: cfd310e [Jeff Reback] TST: add test for pandas conversion of timedelta, currently unimplemented
…mplemented xref pandas-dev/pandas#16004 Author: Jeff Reback <[email protected]> Closes apache#551 from jreback/timedelta and squashes the following commits: cfd310e [Jeff Reback] TST: add test for pandas conversion of timedelta, currently unimplemented
No description provided.