Skip to content
Open
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
2 changes: 0 additions & 2 deletions python/pyspark/pandas/tests/computation/test_any_all.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

from pyspark import pandas as ps
from pyspark.testing.pandasutils import PandasOnSparkTestCase
from pyspark.testing.sqlutils import SQLTestUtils


class FrameAnyAllMixin:
Expand Down Expand Up @@ -263,7 +262,6 @@ def test_any(self):
class FrameAnyAllTests(
FrameAnyAllMixin,
PandasOnSparkTestCase,
SQLTestUtils,
):
pass

Expand Down
2 changes: 0 additions & 2 deletions python/pyspark/pandas/tests/computation/test_apply_func.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@
from pyspark.loose_version import LooseVersion
from pyspark.pandas.config import option_context
from pyspark.testing.pandasutils import PandasOnSparkTestCase
from pyspark.testing.sqlutils import SQLTestUtils


# This file contains test cases for 'Function application, GroupBy & Window'
Expand Down Expand Up @@ -571,7 +570,6 @@ def test_aggregate(self):
class FrameApplyFunctionTests(
FrameApplyFunctionMixin,
PandasOnSparkTestCase,
SQLTestUtils,
):
pass

Expand Down
2 changes: 0 additions & 2 deletions python/pyspark/pandas/tests/computation/test_binary_ops.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@

from pyspark import pandas as ps
from pyspark.testing.pandasutils import PandasOnSparkTestCase
from pyspark.testing.sqlutils import SQLTestUtils


# This file contains test cases for 'Binary operator functions'
Expand Down Expand Up @@ -319,7 +318,6 @@ def test_rfloordiv(self):
class FrameBinaryOpsTests(
FrameBinaryOpsMixin,
PandasOnSparkTestCase,
SQLTestUtils,
):
pass

Expand Down
2 changes: 0 additions & 2 deletions python/pyspark/pandas/tests/computation/test_combine.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

from pyspark import pandas as ps
from pyspark.testing.pandasutils import PandasOnSparkTestCase
from pyspark.testing.sqlutils import SQLTestUtils


# This file contains test cases for 'Combining / joining / merging'
Expand Down Expand Up @@ -769,7 +768,6 @@ def test_update_filter_func_with_nulls(self):
class FrameCombineTests(
FrameCombineMixin,
PandasOnSparkTestCase,
SQLTestUtils,
):
pass

Expand Down
2 changes: 0 additions & 2 deletions python/pyspark/pandas/tests/computation/test_compute.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@
from pyspark.sql import functions as sf
from pyspark import pandas as ps
from pyspark.testing.pandasutils import PandasOnSparkTestCase
from pyspark.testing.sqlutils import SQLTestUtils


# This file contains test cases for 'Computations / Descriptive Stats'
Expand Down Expand Up @@ -570,7 +569,6 @@ def test_product(self):
class FrameComputeTests(
FrameComputeMixin,
PandasOnSparkTestCase,
SQLTestUtils,
):
pass

Expand Down
2 changes: 0 additions & 2 deletions python/pyspark/pandas/tests/computation/test_corr.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

from pyspark import pandas as ps
from pyspark.testing.pandasutils import PandasOnSparkTestCase, SPARK_CONF_ARROW_ENABLED
from pyspark.testing.sqlutils import SQLTestUtils


class FrameCorrMixin:
Expand Down Expand Up @@ -209,7 +208,6 @@ def test_cov_corr_meta(self):
class FrameCorrTests(
FrameCorrMixin,
PandasOnSparkTestCase,
SQLTestUtils,
):
pass

Expand Down
2 changes: 0 additions & 2 deletions python/pyspark/pandas/tests/computation/test_corrwith.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@

from pyspark import pandas as ps
from pyspark.testing.pandasutils import PandasOnSparkTestCase
from pyspark.testing.sqlutils import SQLTestUtils


class FrameCorrwithMixin:
Expand Down Expand Up @@ -66,7 +65,6 @@ def _test_corrwith(self, psdf, psobj):
class FrameCorrwithTests(
FrameCorrwithMixin,
PandasOnSparkTestCase,
SQLTestUtils,
):
pass

Expand Down
2 changes: 0 additions & 2 deletions python/pyspark/pandas/tests/computation/test_cov.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,6 @@

from pyspark import pandas as ps
from pyspark.testing.pandasutils import PandasOnSparkTestCase
from pyspark.testing.sqlutils import SQLTestUtils


class FrameCovMixin:
Expand Down Expand Up @@ -102,7 +101,6 @@ def test_cov(self):
class FrameCovTests(
FrameCovMixin,
PandasOnSparkTestCase,
SQLTestUtils,
):
pass

Expand Down
2 changes: 0 additions & 2 deletions python/pyspark/pandas/tests/computation/test_cumulative.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

from pyspark import pandas as ps
from pyspark.testing.pandasutils import PandasOnSparkTestCase
from pyspark.testing.sqlutils import SQLTestUtils


class FrameCumulativeMixin:
Expand Down Expand Up @@ -122,7 +121,6 @@ def test_cumprod_multiindex_columns(self):
class FrameCumulativeTests(
FrameCumulativeMixin,
PandasOnSparkTestCase,
SQLTestUtils,
):
pass

Expand Down
2 changes: 0 additions & 2 deletions python/pyspark/pandas/tests/computation/test_describe.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
from pyspark.loose_version import LooseVersion
from pyspark import pandas as ps
from pyspark.testing.pandasutils import PandasOnSparkTestCase
from pyspark.testing.sqlutils import SQLTestUtils


class FrameDescribeMixin:
Expand Down Expand Up @@ -244,7 +243,6 @@ def test_describe_empty(self):
class FrameDescribeTests(
FrameDescribeMixin,
PandasOnSparkTestCase,
SQLTestUtils,
):
pass

Expand Down
2 changes: 0 additions & 2 deletions python/pyspark/pandas/tests/computation/test_eval.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

from pyspark import pandas as ps
from pyspark.testing.pandasutils import PandasOnSparkTestCase
from pyspark.testing.sqlutils import SQLTestUtils


class FrameEvalMixin:
Expand Down Expand Up @@ -62,7 +61,6 @@ def test_eval(self):
class FrameEvalTests(
FrameEvalMixin,
PandasOnSparkTestCase,
SQLTestUtils,
):
pass

Expand Down
2 changes: 0 additions & 2 deletions python/pyspark/pandas/tests/computation/test_idxmax_idxmin.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
from pyspark.loose_version import LooseVersion
from pyspark import pandas as ps
from pyspark.testing.pandasutils import PandasOnSparkTestCase
from pyspark.testing.sqlutils import SQLTestUtils


class FrameIdxMaxMinMixin:
Expand Down Expand Up @@ -280,7 +279,6 @@ def test_idxmin_multiindex_columns(self):
class FrameIdxMaxMinTests(
FrameIdxMaxMinMixin,
PandasOnSparkTestCase,
SQLTestUtils,
):
pass

Expand Down
2 changes: 0 additions & 2 deletions python/pyspark/pandas/tests/computation/test_melt.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

from pyspark import pandas as ps
from pyspark.testing.pandasutils import PandasOnSparkTestCase
from pyspark.testing.sqlutils import SQLTestUtils
from pyspark.pandas.utils import name_like_string


Expand Down Expand Up @@ -168,7 +167,6 @@ def test_melt(self):
class FrameMeltTests(
FrameMeltMixin,
PandasOnSparkTestCase,
SQLTestUtils,
):
pass

Expand Down
2 changes: 0 additions & 2 deletions python/pyspark/pandas/tests/computation/test_missing_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,6 @@
from pyspark import pandas as ps
from pyspark.loose_version import LooseVersion
from pyspark.testing.pandasutils import PandasOnSparkTestCase
from pyspark.testing.sqlutils import SQLTestUtils


# This file contains test cases for 'Missing data handling'
Expand Down Expand Up @@ -490,7 +489,6 @@ def test_pad(self):
class FrameMissingDataTests(
FrameMissingDataMixin,
PandasOnSparkTestCase,
SQLTestUtils,
):
pass

Expand Down
2 changes: 0 additions & 2 deletions python/pyspark/pandas/tests/computation/test_pivot.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

from pyspark import pandas as ps
from pyspark.testing.pandasutils import PandasOnSparkTestCase
from pyspark.testing.sqlutils import SQLTestUtils


class FramePivotMixin:
Expand Down Expand Up @@ -191,7 +190,6 @@ def test_pivot_table_errors(self):
class FramePivotTests(
FramePivotMixin,
PandasOnSparkTestCase,
SQLTestUtils,
):
pass

Expand Down
2 changes: 0 additions & 2 deletions python/pyspark/pandas/tests/computation/test_pivot_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

from pyspark import pandas as ps
from pyspark.testing.pandasutils import PandasOnSparkTestCase
from pyspark.testing.sqlutils import SQLTestUtils


class PivotTableMixin:
Expand Down Expand Up @@ -75,7 +74,6 @@ def test_pivot_table(self):
class PivotTableTests(
PivotTableMixin,
PandasOnSparkTestCase,
SQLTestUtils,
):
pass

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

from pyspark import pandas as ps
from pyspark.testing.pandasutils import PandasOnSparkTestCase
from pyspark.testing.sqlutils import SQLTestUtils


class PivotTableAdvMixin:
Expand Down Expand Up @@ -75,7 +74,6 @@ def test_pivot_table(self):
class PivotTableAdvTests(
PivotTableAdvMixin,
PandasOnSparkTestCase,
SQLTestUtils,
):
pass

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

from pyspark import pandas as ps
from pyspark.testing.pandasutils import PandasOnSparkTestCase
from pyspark.testing.sqlutils import SQLTestUtils


class PivotTableMultiIdxMixin:
Expand Down Expand Up @@ -73,7 +72,6 @@ def test_pivot_table(self):
class PivotTableMultiIdxTests(
PivotTableMultiIdxMixin,
PandasOnSparkTestCase,
SQLTestUtils,
):
pass

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

from pyspark import pandas as ps
from pyspark.testing.pandasutils import PandasOnSparkTestCase
from pyspark.testing.sqlutils import SQLTestUtils


class PivotTableMultiIdxAdvMixin:
Expand Down Expand Up @@ -75,7 +74,6 @@ def test_pivot_table(self):
class PivotTableMultiIdxAdvTests(
PivotTableMultiIdxAdvMixin,
PandasOnSparkTestCase,
SQLTestUtils,
):
pass

Expand Down
2 changes: 0 additions & 2 deletions python/pyspark/pandas/tests/computation/test_stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

from pyspark import pandas as ps
from pyspark.testing.pandasutils import PandasOnSparkTestCase
from pyspark.testing.sqlutils import SQLTestUtils


class StatsTestsMixin:
Expand Down Expand Up @@ -313,7 +312,6 @@ def test_numeric_only_unsupported(self):
class StatsTests(
StatsTestsMixin,
PandasOnSparkTestCase,
SQLTestUtils,
):
pass

Expand Down
3 changes: 1 addition & 2 deletions python/pyspark/pandas/tests/diff_frames_ops/test_align.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
from pyspark import pandas as ps
from pyspark.pandas.config import set_option, reset_option
from pyspark.testing.pandasutils import PandasOnSparkTestCase
from pyspark.testing.sqlutils import SQLTestUtils


class DiffFramesAlignMixin:
Expand Down Expand Up @@ -101,7 +100,7 @@ def test_align(self):
self.assertRaises(ValueError, lambda: psdf1.align(psdf3, axis=1))


class DiffFramesAlignTests(DiffFramesAlignMixin, PandasOnSparkTestCase, SQLTestUtils):
class DiffFramesAlignTests(DiffFramesAlignMixin, PandasOnSparkTestCase):
pass


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
from pyspark import pandas as ps
from pyspark.pandas.config import set_option, reset_option
from pyspark.testing.pandasutils import PandasOnSparkTestCase
from pyspark.testing.sqlutils import SQLTestUtils
from pyspark.pandas.typedef.typehints import extension_float_dtypes_available


Expand Down Expand Up @@ -183,7 +182,6 @@ def test_multi_index_arithmetic(self):
class ArithmeticTests(
ArithmeticMixin,
PandasOnSparkTestCase,
SQLTestUtils,
):
pass

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
from pyspark import pandas as ps
from pyspark.pandas.config import set_option, reset_option
from pyspark.testing.pandasutils import PandasOnSparkTestCase
from pyspark.testing.sqlutils import SQLTestUtils
from pyspark.pandas.typedef.typehints import extension_float_dtypes_available


Expand Down Expand Up @@ -176,7 +175,6 @@ def test_arithmetic_chain(self):
class ArithmeticChainTests(
ArithmeticChainMixin,
PandasOnSparkTestCase,
SQLTestUtils,
):
pass

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@

from pyspark.pandas.config import set_option, reset_option
from pyspark.testing.pandasutils import PandasOnSparkTestCase
from pyspark.testing.sqlutils import SQLTestUtils
from pyspark.pandas.typedef.typehints import extension_dtypes_available
from pyspark.pandas.tests.diff_frames_ops.test_arithmetic_chain import (
ArithmeticChainTestingFuncMixin,
Expand Down Expand Up @@ -102,7 +101,6 @@ def test_arithmetic_chain_extension_dtypes(self):
class ArithmeticChainExtTests(
ArithmeticChainExtMixin,
PandasOnSparkTestCase,
SQLTestUtils,
):
pass

Expand Down
Loading