-
Notifications
You must be signed in to change notification settings - Fork 1.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
808 changed files
with
3,551 additions
and
3,524 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
25 changes: 0 additions & 25 deletions
25
great_expectations/datasource/fluent/data_connector/__init__.py
This file was deleted.
Oops, something went wrong.
12 changes: 0 additions & 12 deletions
12
great_expectations/datasource/fluent/pandas_file_path_datasource.pyi
This file was deleted.
Oops, something went wrong.
33 changes: 0 additions & 33 deletions
33
great_expectations/expectations/metrics/map_metric_provider/__init__.py
This file was deleted.
Oops, something went wrong.
21 changes: 0 additions & 21 deletions
21
great_expectations/experimental/rule_based_profiler/domain_builder/__init__.py
This file was deleted.
Oops, something went wrong.
7 changes: 0 additions & 7 deletions
7
...pectations/experimental/rule_based_profiler/expectation_configuration_builder/__init__.py
This file was deleted.
Oops, something went wrong.
37 changes: 0 additions & 37 deletions
37
great_expectations/experimental/rule_based_profiler/parameter_builder/__init__.py
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
# isort:skip_file | ||
|
||
# Set up version information immediately | ||
from ._version import get_versions as _get_versions | ||
|
||
__version__ = _get_versions()["version"] | ||
del _get_versions | ||
|
||
# great_expectations.data_context must be imported first or we will have circular dependency issues | ||
import great_expectations_v1.data_context # isort:skip | ||
import great_expectations_v1.core | ||
|
||
from great_expectations_v1.data_context.data_context.context_factory import get_context | ||
|
||
# # By placing this registry function in our top-level __init__, we ensure that all | ||
# # GX workflows have populated expectation registries before they are used. | ||
from great_expectations_v1.expectations.registry import ( | ||
register_core_expectations as _register_core_expectations, | ||
register_core_metrics as _register_core_metrics, | ||
) | ||
|
||
_register_core_metrics() | ||
_register_core_expectations() | ||
|
||
del _register_core_metrics | ||
del _register_core_expectations | ||
|
||
from great_expectations_v1 import exceptions | ||
from great_expectations_v1 import expectations | ||
from great_expectations_v1 import checkpoint | ||
|
||
from great_expectations_v1.checkpoint import Checkpoint | ||
from great_expectations_v1.core.expectation_suite import ExpectationSuite | ||
from great_expectations_v1.core.result_format import ResultFormat | ||
from great_expectations_v1.core.run_identifier import RunIdentifier | ||
from great_expectations_v1.core.validation_definition import ValidationDefinition |
Oops, something went wrong.