MCPcopy
hub / github.com/dask/dask / test_attrs_dataframe

Function test_attrs_dataframe

dask/dataframe/tests/test_dataframe.py:4860–4866  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

4858
4859@pytest.mark.skipif(reason="not important now")
4860def test_attrs_dataframe():
4861 df = pd.DataFrame({"A": [1, 2], "B": [3, 4], "C": [5, 6]})
4862 df.attrs = {"date": "2020-10-16"}
4863 ddf = dd.from_pandas(df, 2)
4864
4865 assert df.attrs == ddf.attrs
4866 assert df.abs().attrs == ddf.abs().attrs
4867
4868
4869@pytest.mark.skipif(reason="not important now")

Callers

nothing calls this directly

Calls 1

absMethod · 0.45

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…