Skip to content

Commit 29e9d34

Browse files
authored
Xfail some cubed tests (#413)
1 parent 9bd682c commit 29e9d34

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

flox/core.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1923,7 +1923,7 @@ def _groupby_combine(a, axis, dummy_axis, dtype, keepdims):
19231923
out[field] = combine(a[field], axis=dummy_axis, keepdims=keepdims)
19241924
return out
19251925

1926-
def _groupby_aggregate(a):
1926+
def _groupby_aggregate(a, **kwargs):
19271927
# Convert cubed dict to one that _finalize_results works with
19281928
results = {"groups": expected_groups, "intermediates": a.values()}
19291929
out = _finalize_results(results, agg, axis, expected_groups, reindex)

tests/test_core.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1284,6 +1284,7 @@ def test_group_by_datetime(engine, method):
12841284
assert_equal(expected, actual)
12851285

12861286

1287+
@pytest.mark.xfail
12871288
@requires_cubed
12881289
@pytest.mark.parametrize("method", ["blockwise", "map-reduce"])
12891290
def test_group_by_datetime_cubed(engine, method):

0 commit comments

Comments
 (0)