Skip to content

Commit

Permalink
[SPARK-47081][CONNECT][TESTS][FOLLOW-UP] Skip the flaky doctests for now
Browse files Browse the repository at this point in the history
### What changes were proposed in this pull request?

This PR is a followup of #45150 that skips flaky doctests.

### Why are the changes needed?

In order to make the build stable.

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

No, test-only.

### How was this patch tested?

CI in this PR should verify it.

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

No.

Closes #45889 from HyukjinKwon/SPARK-47081-followup2.

Authored-by: Hyukjin Kwon <gurwls223@apache.org>
Signed-off-by: Hyukjin Kwon <gurwls223@apache.org>
  • Loading branch information
HyukjinKwon committed Apr 5, 2024
1 parent d5620cb commit aeb082e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python/pyspark/sql/session.py
Original file line number Diff line number Diff line change
Expand Up @@ -2048,7 +2048,7 @@ def registerProgressHandler(self, handler: "ProgressHandler") -> None:
>>> def progress_handler(stages, inflight_tasks, done):
... print(f"{len(stages)} Stages known, Done: {done}")
>>> spark.registerProgressHandler(progress_handler)
>>> res = spark.range(10).repartition(1).collect()
>>> res = spark.range(10).repartition(1).collect() # doctest: +SKIP
3 Stages known, Done: False
3 Stages known, Done: True
>>> spark.clearProgressHandlers()
Expand Down

0 comments on commit aeb082e

Please sign in to comment.