We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Expr.skew
1 parent 352542c commit 8f18daaCopy full SHA for 8f18daa
tests/expr_and_series/skew_test.py
@@ -51,10 +51,6 @@ def test_skew_expr(
51
# Can not infer schema from empty dataset.
52
pytest.skip()
53
54
- if "sqlframe" in str(constructor) and int(request.node.callspec.id[-1]) in {2, 4}:
55
- # https://github.com/eakmanrq/sqlframe/issues/610
56
- request.applymarker(pytest.mark.xfail)
57
-
58
result = nw.from_native(constructor({"a": data})).select(nw.col("a").skew())
59
assert_equal_data(result, {"a": [expected]})
60
result = nw.from_native(constructor({"a": data})).with_columns(nw.col("a").skew())
0 commit comments