Skip to content

Commit

Permalink
cat: skip test_catalog_has_supported_data_types (#26926)
Browse files Browse the repository at this point in the history
* skip test_catalog_has_supported_data_types

* bump version
  • Loading branch information
alafanechere committed Jun 1, 2023
1 parent 7a75c0c commit f3c7e5f
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 2 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,8 @@
# Changelog

## 0.10.5
Skipping test_catalog_has_supported_data_types as it is failing on too many connectors. Will first address globally the type/format problems at scale and then re-enable it.

## 0.10.4
Fixing bug: test_catalog_has_supported_data_types should support stream properties having `/` in it.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ COPY pytest.ini setup.py ./
COPY connector_acceptance_test ./connector_acceptance_test
RUN pip install .

LABEL io.airbyte.version=0.10.4
LABEL io.airbyte.version=0.10.5
LABEL io.airbyte.name=airbyte/connector-acceptance-test

ENTRYPOINT ["python", "-m", "pytest", "-p", "connector_acceptance_test.plugin", "-r", "fEsx"]
Original file line number Diff line number Diff line change
Expand Up @@ -692,11 +692,11 @@ def test_backward_compatibility(
checker = CatalogDiffChecker(previous_discovered_catalog, discovered_catalog)
checker.assert_is_backward_compatible()

@pytest.mark.skip("This tests currently leads to too much failures. We need to fix the connectors at scale first.")
def test_catalog_has_supported_data_types(self, discovered_catalog: Mapping[str, Any]):
"""Check that all streams have supported data types, format and airbyte_types.
Supported data types are listed there: https://docs.airbyte.com/understanding-airbyte/supported-data-types/
"""

for stream_name, stream_data in discovered_catalog.items():
schema_helper = JsonSchemaHelper(stream_data.json_schema)

Expand Down

0 comments on commit f3c7e5f

Please sign in to comment.