Skip to content

Commit

Permalink
[SPARK-43354][PYTHON] Re-enable test_create_dataframe_from_pandas_wit…
Browse files Browse the repository at this point in the history
…h_day_time_interval in PyPy3.9
  • Loading branch information
dongjoon-hyun committed Sep 12, 2024
1 parent 875def3 commit 9adfd97
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions python/pyspark/sql/tests/test_creation.py
Original file line number Diff line number Diff line change
Expand Up @@ -111,11 +111,7 @@ def test_create_dataframe_from_pandas_with_dst(self):
os.environ["TZ"] = orig_env_tz
time.tzset()

# TODO(SPARK-43354): Re-enable test_create_dataframe_from_pandas_with_day_time_interval
@unittest.skipIf(
"pypy" in platform.python_implementation().lower() or not have_pandas,
"Fails in PyPy Python 3.8, should enable.",
)
@unittest.skipIf(not have_pandas, pandas_requirement_message) # type: ignore
def test_create_dataframe_from_pandas_with_day_time_interval(self):
# SPARK-37277: Test DayTimeIntervalType in createDataFrame without Arrow.
import pandas as pd
Expand Down

0 comments on commit 9adfd97

Please sign in to comment.