File tree Expand file tree Collapse file tree 3 files changed +4
-1255
lines changed
dataframe_expectations/expectations Expand file tree Collapse file tree 3 files changed +4
-1255
lines changed Original file line number Diff line number Diff line change @@ -48,12 +48,14 @@ repos:
4848 rev : v1.11.2
4949 hooks :
5050 - id : mypy
51- files : ^dataframe_expectations/.*\.py$
51+ files : ^( dataframe_expectations|tests) /.*\.py$
5252 args : [--config-file, ./pyproject.toml]
5353 additional_dependencies : [
5454 types-tabulate,
5555 pandas-stubs,
5656 pyspark-stubs,
5757 types-PyYAML,
58+ pytest,
59+ pytest-cov,
5860 ]
5961 stages : [pre-commit, manual]
Original file line number Diff line number Diff line change 99 from pyspark .sql .connect .dataframe import DataFrame as PySparkConnectDataFrame
1010except ImportError :
1111 # Fallback for older PySpark versions that don't have connect
12- PySparkConnectDataFrame = None
12+ PySparkConnectDataFrame = None # type: ignore[misc,assignment]
1313
1414from dataframe_expectations import DataFrameLike , DataFrameType
1515from dataframe_expectations .result_message import (
You can’t perform that action at this time.
0 commit comments