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
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@
from pyspark.testing.connectutils import ReusedConnectTestCase


@unittest.skip("Disabled due to slowness")
class TransformWithStateInPandasParityTests(
TransformWithStateInPandasTestsMixin, ReusedConnectTestCase
):
Expand Down Expand Up @@ -54,6 +55,7 @@ def test_schema_evolution_scenarios(self):
pass


@unittest.skip("Disabled due to slowness")
class TransformWithStateInPySparkParityTests(
TransformWithStateInPySparkTestsMixin, ReusedConnectTestCase
):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1932,20 +1932,24 @@ def conf(cls):
return cfg


@unittest.skip("Disabled due to slowness")
class TransformWithStateInPandasTests(TransformWithStateInPandasTestsMixin, ReusedSQLTestCase):
pass


@unittest.skip("Disabled due to slowness")
class TransformWithStateInPySparkTests(TransformWithStateInPySparkTestsMixin, ReusedSQLTestCase):
pass


@unittest.skip("Disabled due to slowness")
class TransformWithStateInPandasWithCheckpointV2Tests(
TransformWithStateInPandasWithCheckpointV2TestsMixin, ReusedSQLTestCase
):
pass


@unittest.skip("Disabled due to slowness")
class TransformWithStateInPySparkWithCheckpointV2Tests(
TransformWithStateInPySparkWithCheckpointV2TestsMixin, ReusedSQLTestCase
):
Expand Down