-
-
Notifications
You must be signed in to change notification settings - Fork 19.1k
[#19431] Regression in make_block_same_class (tests failing for new fastparquet release) #19434
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
Changes from 1 commit
eb55928
2f4fc07
e18f8e6
9a07d97
3d9810d
ee75fdf
68d6324
985081d
0cfcd37
0c4a6d7
6ce68cf
f414743
0d76fe7
bb95dc6
d9a2e2a
97b17e9
800b741
52220b9
c602a76
ddbbde3
6e6b5f0
326394f
77422ba
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
- Loading branch information
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -463,13 +463,15 @@ def test_s3_roundtrip(self, df_compat, s3_resource, pa): | |
|
||
class TestParquetFastParquet(Base): | ||
|
||
def test_basic(self, fp_ge_014, df_full): | ||
def test_basic(self, fp, df_full): | ||
df = df_full | ||
|
||
df['datetime_tz'] = pd.date_range('20130101', periods=3, | ||
tz='US/Eastern') | ||
# additional supported types for fastparquet>=0.1.4 | ||
|
||
if LooseVersion(pyarrow.__version__) >= LooseVersion('0.1.4'): | ||
|
||
df['datetime_tz'] = pd.date_range('20130101', periods=3, | ||
tz='US/Eastern') | ||
df['timedelta'] = pd.timedelta_range('1 day', periods=3) | ||
check_round_trip(df, fp_ge_014) | ||
check_round_trip(df, fp) | ||
|
||
@pytest.mark.skip(reason="not supported") | ||
def test_duplicate_columns(self, fp): | ||
|
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.
make 2 tests here, one for < 0.1.4 and 1 for >