Skip to content

Commit

Permalink
[SPARK-51138][PYTHON][CONNECT][TESTS] Skip pyspark.sql.tests.connect.…
Browse files Browse the repository at this point in the history
…test_parity_frame_plot_plotly.FramePlotPlotlyParityTests.test_area_plot

### What changes were proposed in this pull request?

This PR proposes to skip pyspark.sql.tests.connect.test_parity_frame_plot_plotly.FramePlotPlotlyParityTests.test_area_plot.

The failure happens in https://github.com/apache/spark/actions/runs/13228738315/job/36922950044 build

### Why are the changes needed?

One failure here stops the Python build so it can't test others. Filed a JIRA to reenable https://issues.apache.org/jira/browse/SPARK-51137

### Does this PR introduce _any_ user-facing change?

No, test-only.

### How was this patch tested?

Will monitor the build.

### Was this patch authored or co-authored using generative AI tooling?
No.

Closes apache#49859 from HyukjinKwon/SPARK-51138.

Authored-by: Hyukjin Kwon <gurwls223@apache.org>
Signed-off-by: Hyukjin Kwon <gurwls223@apache.org>
  • Loading branch information
HyukjinKwon committed Feb 10, 2025
1 parent 301b666 commit 736737e
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,9 @@
class DataFramePlotPlotlyParityTests(
DataFramePlotPlotlyTestsMixin, PandasOnSparkTestUtils, TestUtils, ReusedConnectTestCase
):
pass
@unittest.skip("SPARK-51137: Should be reenabled")
def test_area_plot(self):
self.test_area_plot()


if __name__ == "__main__":
Expand Down

0 comments on commit 736737e

Please sign in to comment.