Skip to content
Closed
Changes from all commits
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
7 changes: 1 addition & 6 deletions python/pyspark/sql/tests/test_creation.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
# limitations under the License.
#

import platform
from decimal import Decimal
import os
import time
Expand Down Expand Up @@ -111,11 +110,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