-
Notifications
You must be signed in to change notification settings - Fork 1.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[BUGFIX] Patch inconsistent ordering within GCP test asserts #7130
[BUGFIX] Patch inconsistent ordering within GCP test asserts #7130
Conversation
✅ Deploy Preview for niobium-lead-7998 ready!
To edit notification comments on pull requests, go to your Netlify site settings. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM as long as tests pass
@@ -300,7 +300,12 @@ | |||
}, | |||
"out": { | |||
"success": false, | |||
"unexpected_index_list": [0], | |||
"unexpected_index_list": [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated so that the output includes ID/PK
"postgresql", | ||
"mssql", | ||
"mysql", | ||
"bigquery" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bigquery
does not allow for comparison between datetime
"suppress_test_for": ["pandas", "spark", "postgresql", "mssql", "mysql"], | ||
"suppress_test_for": [ |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
bigquery
does not allow for comparison between datetime
# Call out supported dialects | ||
if "pandas_v3_api" in only_for: | ||
generate_test = True | ||
if "sqlalchemy" in only_for: |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This was a bug. The pandas_v3_api
should have been in the if statement that was checking for PandasBatchData
.
* develop: [CONTRIB] added new Expectations - India_zip_code expectation and not_to_be_future_date expectation (great-expectations#6086) [MAINTENANCE] Remove unused dockerfile (great-expectations#7152) [DOCS] doc-464 consolidating and standardizing snippets (great-expectations#7154) [BUGFIX] Patch broken rendered content Cloud tests (great-expectations#7155) [MAINTENANCE] Clean up `mypy` violations in `CardinalityChecker` (great-expectations#7146) [MAINTENANCE] Clean up pathlib.Path() usage in DataConnector utilities and restore tighter formatting in great_expectations/util.py (great-expectations#7149) [MAINTENANCE] Change all instances of `create_expectation_suite` to `add_expectation_suite` in tests, docs, and source code (great-expectations#7117) [BUGFIX] Parse pandas version correctly for development builds (great-expectations#7147) [MAINTENANCE] Update V3 DataConnector utilities to support New Datasources (ZEP) (great-expectations#7144) [BUGFIX] Patch inconsistent ordering within GCP test asserts (great-expectations#7130) Refactor sql splitter to take selectable instead of str. (great-expectations#7133)
* develop: (29 commits) [BUGFIX] pydantic>=1.10.4 - ImportError: cannot import name dataclass_transform (#7163) [MAINTENANCE] ZEP - update asset factories method signatures from asset models (#7096) Delete cli v012 tests. (#7159) [CONTRIB] added new Expectations - India_zip_code expectation and not_to_be_future_date expectation (#6086) [MAINTENANCE] Remove unused dockerfile (#7152) [DOCS] doc-464 consolidating and standardizing snippets (#7154) [BUGFIX] Patch broken rendered content Cloud tests (#7155) [MAINTENANCE] Clean up `mypy` violations in `CardinalityChecker` (#7146) [MAINTENANCE] Clean up pathlib.Path() usage in DataConnector utilities and restore tighter formatting in great_expectations/util.py (#7149) [MAINTENANCE] Change all instances of `create_expectation_suite` to `add_expectation_suite` in tests, docs, and source code (#7117) [BUGFIX] Parse pandas version correctly for development builds (#7147) [MAINTENANCE] Update V3 DataConnector utilities to support New Datasources (ZEP) (#7144) [BUGFIX] Patch inconsistent ordering within GCP test asserts (#7130) Refactor sql splitter to take selectable instead of str. (#7133) [BUGFIX] `TupleAzureBlobStoreBackend` no longer gives warning when obfuscating connection string (#7139) [MAINTENANCE] ruff 0.0.246 update (#7137) [MAINTENANCE] Output Consistent Data Format from "table.head" Metric for every ExecutionEngine (#7134) [BUGFIX] Copy previous versions after checking out the the current commit (#7142) [DOCS] Remove sitemap.xml (#7141) [MAINTENANCE] mypy `v1.0.0` (#7138) ...
Changes proposed in this pull request:
Definition of Done