diff options
Diffstat (limited to 'tests/dataframe')
-rw-r--r-- | tests/dataframe/integration/dataframe_validator.py | 6 |
1 files changed, 1 insertions, 5 deletions
diff --git a/tests/dataframe/integration/dataframe_validator.py b/tests/dataframe/integration/dataframe_validator.py index 16f8922..c84a342 100644 --- a/tests/dataframe/integration/dataframe_validator.py +++ b/tests/dataframe/integration/dataframe_validator.py @@ -3,17 +3,13 @@ import unittest import warnings import sqlglot -from sqlglot.helper import PYTHON_VERSION from tests.helpers import SKIP_INTEGRATION if t.TYPE_CHECKING: from pyspark.sql import DataFrame as SparkDataFrame -@unittest.skipIf( - SKIP_INTEGRATION or PYTHON_VERSION > (3, 10), - "Skipping Integration Tests since `SKIP_INTEGRATION` is set", -) +@unittest.skipIf(SKIP_INTEGRATION, "Skipping Integration Tests since `SKIP_INTEGRATION` is set") class DataFrameValidator(unittest.TestCase): spark = None sqlglot = None |