Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions python/pyspark/pandas/tests/test_dataframe.py
Original file line number Diff line number Diff line change
Expand Up @@ -7074,6 +7074,10 @@ def test_cov(self):
psdf = ps.from_pandas(pdf)
self.assert_eq(pdf.cov(), psdf.cov())

@unittest.skipIf(
LooseVersion(pd.__version__) < LooseVersion("1.3.0"),
"pandas support `Styler.to_latex` since 1.3.0"
)
def test_style(self):
# Currently, the `style` function returns a pandas object `Styler` as it is,
# processing only the number of rows declared in `compute.max_rows`.
Expand Down