Skip to content
Closed
Show file tree
Hide file tree
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
4 changes: 2 additions & 2 deletions dev/sparktestsupport/modules.py
Original file line number Diff line number Diff line change
Expand Up @@ -770,7 +770,7 @@ def __hash__(self):
"pyspark.pandas.tests.window.test_groupby_rolling_adv",
"pyspark.pandas.tests.window.test_groupby_rolling_count",
"pyspark.pandas.tests.test_scalars",
"pyspark.pandas.tests.test_series_datetime",
"pyspark.pandas.tests.series.test_datetime",
"pyspark.pandas.tests.series.test_string_ops_adv",
"pyspark.pandas.tests.series.test_string_ops_basic",
"pyspark.pandas.tests.test_spark_functions",
Expand Down Expand Up @@ -1046,7 +1046,7 @@ def __hash__(self):
"pyspark.pandas.tests.connect.resample.test_parity_on",
"pyspark.pandas.tests.connect.resample.test_parity_timezone",
"pyspark.pandas.tests.connect.test_parity_scalars",
"pyspark.pandas.tests.connect.test_parity_series_datetime",
"pyspark.pandas.tests.connect.series.test_parity_datetime",
"pyspark.pandas.tests.connect.series.test_parity_string_ops_adv",
"pyspark.pandas.tests.connect.series.test_parity_string_ops_basic",
"pyspark.pandas.tests.connect.test_parity_spark_functions",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,21 @@
#
import unittest

from pyspark.pandas.tests.test_series_datetime import SeriesDateTimeTestsMixin
from pyspark.pandas.tests.series.test_datetime import SeriesDateTimeTestsMixin
from pyspark.testing.connectutils import ReusedConnectTestCase
from pyspark.testing.pandasutils import PandasOnSparkTestUtils


class SeriesDateTimeParityTests(
SeriesDateTimeTestsMixin, PandasOnSparkTestUtils, ReusedConnectTestCase
SeriesDateTimeTestsMixin,
PandasOnSparkTestUtils,
ReusedConnectTestCase,
):
pass


if __name__ == "__main__":
from pyspark.pandas.tests.connect.test_parity_series_datetime import * # noqa: F401
from pyspark.pandas.tests.connect.series.test_parity_datetime import * # noqa: F401

try:
import xmlrunner
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -280,12 +280,16 @@ def test_unsupported_type(self):
)


class SeriesDateTimeTests(SeriesDateTimeTestsMixin, PandasOnSparkTestCase, SQLTestUtils):
class SeriesDateTimeTests(
SeriesDateTimeTestsMixin,
PandasOnSparkTestCase,
SQLTestUtils,
):
pass


if __name__ == "__main__":
from pyspark.pandas.tests.test_series_datetime import * # noqa: F401
from pyspark.pandas.tests.series.test_datetime import * # noqa: F401

try:
import xmlrunner
Expand Down