Skip to content

Commit 1ea8a85

Browse files
asl3zhengruifeng
authored andcommitted
[SPARK-54555][PYTHON][TESTS][FOLLOW-UP] Skip pyspark-pandas doctest
### What changes were proposed in this pull request? Skip doctest to restore pyspark-pandas CI, while docs are being updated for arrow by default ### Why are the changes needed? Restore the CI ### Does this PR introduce _any_ user-facing change? No ### How was this patch tested? CI ### Was this patch authored or co-authored using generative AI tooling? No Closes #53299 from asl3/skip-pyspark-pandas. Authored-by: Amanda Liu <[email protected]> Signed-off-by: Ruifeng Zheng <[email protected]>
1 parent 7db7f3c commit 1ea8a85

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

python/pyspark/pandas/base.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1367,15 +1367,15 @@ def value_counts(
13671367
('falcon', 'length')],
13681368
)
13691369
1370-
>>> s.index.value_counts().sort_index()
1370+
>>> s.index.value_counts().sort_index() # doctest: +SKIP
13711371
(cow, length) 1
13721372
(cow, weight) 2
13731373
(falcon, length) 2
13741374
(falcon, weight) 1
13751375
(lama, weight) 3
13761376
Name: count, dtype: int64
13771377
1378-
>>> s.index.value_counts(normalize=True).sort_index()
1378+
>>> s.index.value_counts(normalize=True).sort_index() # doctest: +SKIP
13791379
(cow, length) 0.111111
13801380
(cow, weight) 0.222222
13811381
(falcon, length) 0.222222

0 commit comments

Comments
 (0)