Skip to content

Push on main

Push on main #1078

GitHub Actions / PyTest Results (Full) failed Oct 1, 2025 in 0s

1 fail, 16 skipped, 350 pass in 19m 17s

367 tests  +3   350 ✅ +2   19m 17s ⏱️ - 6m 34s
  1 suites ±0    16 💤 ±0 
  1 files   ±0     1 ❌ +1 

Results for commit f5f0f47. ± Comparison against earlier commit c64e73d.

Annotations

Check warning on line 0 in tests.integration_tests.cloud.test_cloud_workspaces

See this annotation in the file changed.

@github-actions github-actions / PyTest Results (Full)

test_deploy_connection (tests.integration_tests.cloud.test_cloud_workspaces) failed

build/test-results/test-results.xml [took 30s]
Raw output
airbyte_api.errors.sdkerror.SDKError: API error occurred: Status 500
{"status":500,"type":"https://reference.airbyte.com/reference/errors","title":"unexpected-problem","detail":"An unexpected problem has occurred. If this is an error that needs to be addressed, please submit a pull request or github issue.","documentationUrl":null,"data":{"message":"Secret reference 0c5115c4-9897-4e1b-91f6-ff5400e74213 does not exist but is referenced in the config"}}
cloud_workspace = CloudWorkspace(workspace_id='19d7a891-8e0e-40ac-8a8c-5faf8d11e47c', client_id=<SecretString: ****>, client_secret=<SecretString: ****>, api_root='https://api.airbyte.com/v1')
deployable_dummy_source = <airbyte.sources.base.Source object at 0x7f1f60557dc0>
deployable_dummy_destination = <airbyte.destinations.base.Destination object at 0x7f1f3d2a3a90>

    def test_deploy_connection(
        cloud_workspace: CloudWorkspace,
        deployable_dummy_source: ab.Source,
        deployable_dummy_destination: ab.Destination,
    ) -> None:
        """Test deploying a source and cache to a workspace as a new connection."""
        stream_names = deployable_dummy_source.get_selected_streams()
        cloud_source = cloud_workspace.deploy_source(
            name="test-source",
            source=deployable_dummy_source,
            random_name_suffix=True,
        )
>       cloud_destination = cloud_workspace.deploy_destination(
            name="test-destination",
            destination=deployable_dummy_destination,
            random_name_suffix=True,
        )

tests/integration_tests/cloud/test_cloud_workspaces.py:75: 
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 
airbyte/cloud/workspaces.py:223: in deploy_destination
    existing = self.list_destinations(name=name)
airbyte/cloud/workspaces.py:437: in list_destinations
    destinations = api_util.list_destinations(
airbyte/_util/api_util.py:306: in list_destinations
    response = airbyte_instance.destinations.list_destinations(
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ 

self = <airbyte_api.destinations.Destinations object at 0x7f1f4c280940>
request = ListDestinationsRequest(include_deleted=False, limit=100, offset=300, workspace_ids=['19d7a891-8e0e-40ac-8a8c-5faf8d11e47c'])

    def list_destinations(self, request: api.ListDestinationsRequest) -> api.ListDestinationsResponse:
        r"""List destinations"""
        hook_ctx = HookContext(operation_id='listDestinations', oauth2_scopes=[], security_source=self.sdk_configuration.security)
        base_url = utils.template_url(*self.sdk_configuration.get_server_details())
    
        url = base_url + '/destinations'
    
        if callable(self.sdk_configuration.security):
            headers, query_params = utils.get_security(self.sdk_configuration.security())
        else:
            headers, query_params = utils.get_security(self.sdk_configuration.security)
    
        query_params = { **utils.get_query_params(request), **query_params }
        headers['Accept'] = 'application/json'
        headers['user-agent'] = self.sdk_configuration.user_agent
        client = self.sdk_configuration.client
    
        try:
            req = client.prepare_request(requests_http.Request('GET', url, params=query_params, headers=headers))
            req = self.sdk_configuration.get_hooks().before_request(BeforeRequestContext(hook_ctx), req)
            http_res = client.send(req)
        except Exception as e:
            _, e = self.sdk_configuration.get_hooks().after_error(AfterErrorContext(hook_ctx), None, e)
            if e is not None:
                raise e
    
        if utils.match_status_codes(['403','404','4XX','5XX'], http_res.status_code):
            result, e = self.sdk_configuration.get_hooks().after_error(AfterErrorContext(hook_ctx), http_res, None)
            if e is not None:
                raise e
            if result is not None:
                http_res = result
        else:
            http_res = self.sdk_configuration.get_hooks().after_success(AfterSuccessContext(hook_ctx), http_res)
    
    
    
        res = api.ListDestinationsResponse(status_code=http_res.status_code, content_type=http_res.headers.get('Content-Type') or '', raw_response=http_res)
    
        if http_res.status_code == 200:
            # pylint: disable=no-else-return
            if utils.match_content_type(http_res.headers.get('Content-Type') or '', 'application/json'):
                out = utils.unmarshal_json(http_res.text, Optional[models.DestinationsResponse])
                res.destinations_response = out
            else:
                content_type = http_res.headers.get('Content-Type')
                raise errors.SDKError(f'unknown content-type received: {content_type}', http_res.status_code, http_res.text, http_res)
        elif http_res.status_code == 403 or http_res.status_code == 404 or http_res.status_code >= 400 and http_res.status_code < 500 or http_res.status_code >= 500 and http_res.status_code < 600:
>           raise errors.SDKError('API error occurred', http_res.status_code, http_res.text, http_res)
E           airbyte_api.errors.sdkerror.SDKError: API error occurred: Status 500
E           {"status":500,"type":"https://reference.airbyte.com/reference/errors","title":"unexpected-problem","detail":"An unexpected problem has occurred. If this is an error that needs to be addressed, please submit a pull request or github issue.","documentationUrl":null,"data":{"message":"Secret reference 0c5115c4-9897-4e1b-91f6-ff5400e74213 does not exist but is referenced in the config"}}

.venv/lib/python3.10/site-packages/airbyte_api/destinations.py:229: SDKError

Check notice on line 0 in .github

See this annotation in the file changed.

@github-actions github-actions / PyTest Results (Full)

16 skipped tests found

There are 16 skipped tests, see "Raw output" for the full list of skipped tests.
Raw output
tests.integration_tests.cloud.test_cloud_sql_reads ‑ test_read_from_deployed_connection[Faker->BigQuery]
tests.integration_tests.cloud.test_cloud_sql_reads ‑ test_read_from_deployed_connection[Faker->MotherDuck]
tests.integration_tests.cloud.test_cloud_sql_reads ‑ test_read_from_deployed_connection[Faker->Postgres]
tests.integration_tests.cloud.test_cloud_sql_reads ‑ test_read_from_deployed_connection[Faker->Snowflake]
tests.integration_tests.cloud.test_cloud_sql_reads ‑ test_read_from_previous_job[Faker->BigQuery]
tests.integration_tests.cloud.test_cloud_sql_reads ‑ test_read_from_previous_job[Faker->MotherDuck]
tests.integration_tests.cloud.test_cloud_sql_reads ‑ test_read_from_previous_job[Faker->Postgres]
tests.integration_tests.cloud.test_cloud_sql_reads ‑ test_read_from_previous_job[Faker->Snowflake]
tests.integration_tests.cloud.test_cloud_sql_reads ‑ test_translate_cloud_job_to_sql_cache[Faker->BigQuery]
tests.integration_tests.cloud.test_cloud_sql_reads ‑ test_translate_cloud_job_to_sql_cache[Faker->MotherDuck]
tests.integration_tests.cloud.test_cloud_sql_reads ‑ test_translate_cloud_job_to_sql_cache[Faker->Postgres]
tests.integration_tests.cloud.test_cloud_sql_reads ‑ test_translate_cloud_job_to_sql_cache[Faker->Snowflake]
tests.integration_tests.test_all_cache_types ‑ test_pokeapi_read[BigQuery]
tests.integration_tests.test_all_cache_types ‑ test_pokeapi_read[DuckDB]
tests.integration_tests.test_all_cache_types ‑ test_pokeapi_read[Postgres]
tests.integration_tests.test_all_cache_types ‑ test_pokeapi_read[Snowflake]

Check notice on line 0 in .github

See this annotation in the file changed.

@github-actions github-actions / PyTest Results (Full)

367 tests found

There are 367 tests, see "Raw output" for the full list of tests.
Raw output
tests.docs_tests.test_docs_checked_in ‑ test_docs_generation
tests.integration_tests.cloud.test_cloud_api_util ‑ test_check_connector[f45dd701-d1f0-4e8e-97c4-2b89c40ac928-source-True]
tests.integration_tests.cloud.test_cloud_api_util ‑ test_create_and_delete_connection
tests.integration_tests.cloud.test_cloud_api_util ‑ test_create_and_delete_destination
tests.integration_tests.cloud.test_cloud_api_util ‑ test_create_and_delete_source
tests.integration_tests.cloud.test_cloud_api_util ‑ test_get_bearer_token[https://api.airbyte.com/v1]
tests.integration_tests.cloud.test_cloud_api_util ‑ test_get_workspace
tests.integration_tests.cloud.test_cloud_api_util ‑ test_list_destinations
tests.integration_tests.cloud.test_cloud_api_util ‑ test_list_sources
tests.integration_tests.cloud.test_cloud_api_util ‑ test_list_workspaces
tests.integration_tests.cloud.test_cloud_sql_reads ‑ test_read_from_deployed_connection[Faker->BigQuery]
tests.integration_tests.cloud.test_cloud_sql_reads ‑ test_read_from_deployed_connection[Faker->MotherDuck]
tests.integration_tests.cloud.test_cloud_sql_reads ‑ test_read_from_deployed_connection[Faker->Postgres]
tests.integration_tests.cloud.test_cloud_sql_reads ‑ test_read_from_deployed_connection[Faker->Snowflake]
tests.integration_tests.cloud.test_cloud_sql_reads ‑ test_read_from_previous_job[Faker->BigQuery]
tests.integration_tests.cloud.test_cloud_sql_reads ‑ test_read_from_previous_job[Faker->MotherDuck]
tests.integration_tests.cloud.test_cloud_sql_reads ‑ test_read_from_previous_job[Faker->Postgres]
tests.integration_tests.cloud.test_cloud_sql_reads ‑ test_read_from_previous_job[Faker->Snowflake]
tests.integration_tests.cloud.test_cloud_sql_reads ‑ test_translate_cloud_job_to_sql_cache[Faker->BigQuery]
tests.integration_tests.cloud.test_cloud_sql_reads ‑ test_translate_cloud_job_to_sql_cache[Faker->MotherDuck]
tests.integration_tests.cloud.test_cloud_sql_reads ‑ test_translate_cloud_job_to_sql_cache[Faker->Postgres]
tests.integration_tests.cloud.test_cloud_sql_reads ‑ test_translate_cloud_job_to_sql_cache[Faker->Snowflake]
tests.integration_tests.cloud.test_cloud_sync ‑ test_get_previous_sync_result
tests.integration_tests.cloud.test_cloud_workspaces ‑ test_deploy_connection
tests.integration_tests.cloud.test_cloud_workspaces ‑ test_deploy_destination
tests.integration_tests.cloud.test_cloud_workspaces ‑ test_deploy_dummy_source
tests.integration_tests.cloud.test_cloud_workspaces ‑ test_deploy_source
tests.integration_tests.destinations.test_source_to_destination ‑ test_destination_write_from_read_result
tests.integration_tests.destinations.test_source_to_destination ‑ test_destination_write_from_source_with_cache
tests.integration_tests.destinations.test_source_to_destination ‑ test_destination_write_from_source_without_cache
tests.integration_tests.destinations.test_source_to_destination ‑ test_duckdb_destination_check
tests.integration_tests.destinations.test_source_to_destination ‑ test_duckdb_destination_spec
tests.integration_tests.destinations.test_source_to_destination ‑ test_duckdb_destination_write_components
tests.integration_tests.secrets.test_gsm_secrets ‑ test_first_connector_secret
tests.integration_tests.secrets.test_gsm_secrets ‑ test_get_connector_secrets
tests.integration_tests.secrets.test_gsm_secrets ‑ test_get_gsm_secret
tests.integration_tests.secrets.test_gsm_secrets ‑ test_get_gsm_secrets_by_label
tests.integration_tests.secrets.test_gsm_secrets ‑ test_get_gsm_secrets_with_filter
tests.integration_tests.test_all_cache_types ‑ test_append_strategy
tests.integration_tests.test_all_cache_types ‑ test_auto_add_columns[BigQuery]
tests.integration_tests.test_all_cache_types ‑ test_auto_add_columns[DuckDB]
tests.integration_tests.test_all_cache_types ‑ test_auto_add_columns[Postgres]
tests.integration_tests.test_all_cache_types ‑ test_auto_add_columns[Snowflake]
tests.integration_tests.test_all_cache_types ‑ test_cache_create_source_tables[BigQuery]
tests.integration_tests.test_all_cache_types ‑ test_cache_create_source_tables[DuckDB]
tests.integration_tests.test_all_cache_types ‑ test_cache_create_source_tables[Postgres]
tests.integration_tests.test_all_cache_types ‑ test_cache_create_source_tables[Snowflake]
tests.integration_tests.test_all_cache_types ‑ test_faker_read[BigQuery]
tests.integration_tests.test_all_cache_types ‑ test_faker_read[DuckDB]
tests.integration_tests.test_all_cache_types ‑ test_faker_read[Postgres]
tests.integration_tests.test_all_cache_types ‑ test_faker_read[Snowflake]
tests.integration_tests.test_all_cache_types ‑ test_merge_strategy[BigQuery]
tests.integration_tests.test_all_cache_types ‑ test_merge_strategy[DuckDB]
tests.integration_tests.test_all_cache_types ‑ test_merge_strategy[Postgres]
tests.integration_tests.test_all_cache_types ‑ test_merge_strategy[Snowflake]
tests.integration_tests.test_all_cache_types ‑ test_pokeapi_read[BigQuery]
tests.integration_tests.test_all_cache_types ‑ test_pokeapi_read[DuckDB]
tests.integration_tests.test_all_cache_types ‑ test_pokeapi_read[Postgres]
tests.integration_tests.test_all_cache_types ‑ test_pokeapi_read[Snowflake]
tests.integration_tests.test_all_cache_types ‑ test_replace_strategy[BigQuery]
tests.integration_tests.test_all_cache_types ‑ test_replace_strategy[DuckDB]
tests.integration_tests.test_all_cache_types ‑ test_replace_strategy[Postgres]
tests.integration_tests.test_all_cache_types ‑ test_replace_strategy[Snowflake]
tests.integration_tests.test_bigquery_cache ‑ test_bigquery_props
tests.integration_tests.test_config_change_callback ‑ test_destination_config_callback
tests.integration_tests.test_config_change_callback ‑ test_source_config_callback
tests.integration_tests.test_docker_executable ‑ test_append_strategy
tests.integration_tests.test_docker_executable ‑ test_config_spec
tests.integration_tests.test_docker_executable ‑ test_example_config_file
tests.integration_tests.test_docker_executable ‑ test_faker_pks
tests.integration_tests.test_docker_executable ‑ test_incremental_sync
tests.integration_tests.test_docker_executable ‑ test_merge_strategy[auto]
tests.integration_tests.test_docker_executable ‑ test_merge_strategy[merge]
tests.integration_tests.test_docker_executable ‑ test_replace_strategy
tests.integration_tests.test_duckdb_cache ‑ test_duckdb_connection_cleanup
tests.integration_tests.test_duckdb_cache ‑ test_duckdb_context_manager_cleanup
tests.integration_tests.test_duckdb_cache ‑ test_duckdb_del_cleanup
tests.integration_tests.test_duckdb_cache ‑ test_setup_source_faker
tests.integration_tests.test_install ‑ test_install_failure_log_pypi
tests.integration_tests.test_source_faker_integration ‑ test_append_strategy
tests.integration_tests.test_source_faker_integration ‑ test_config_spec
tests.integration_tests.test_source_faker_integration ‑ test_example_config_file
tests.integration_tests.test_source_faker_integration ‑ test_faker_pks
tests.integration_tests.test_source_faker_integration ‑ test_incremental_sync
tests.integration_tests.test_source_faker_integration ‑ test_merge_insert_not_supported_for_duckdb
tests.integration_tests.test_source_faker_integration ‑ test_merge_insert_not_supported_for_postgres
tests.integration_tests.test_source_faker_integration ‑ test_merge_strategy[auto]
tests.integration_tests.test_source_faker_integration ‑ test_merge_strategy[merge]
tests.integration_tests.test_source_faker_integration ‑ test_replace_strategy
tests.integration_tests.test_source_test_fixture ‑ test_airbyte_version[uv_disabled]
tests.integration_tests.test_source_test_fixture ‑ test_airbyte_version[uv_enabled]
tests.integration_tests.test_source_test_fixture ‑ test_cached_dataset[uv_disabled]
tests.integration_tests.test_source_test_fixture ‑ test_cached_dataset[uv_enabled]
tests.integration_tests.test_source_test_fixture ‑ test_cached_dataset_filter[uv_disabled]
tests.integration_tests.test_source_test_fixture ‑ test_cached_dataset_filter[uv_enabled]
tests.integration_tests.test_source_test_fixture ‑ test_check[uv_disabled]
tests.integration_tests.test_source_test_fixture ‑ test_check[uv_enabled]
tests.integration_tests.test_source_test_fixture ‑ test_check_fail[uv_disabled]
tests.integration_tests.test_source_test_fixture ‑ test_check_fail[uv_enabled]
tests.integration_tests.test_source_test_fixture ‑ test_check_fail_on_missing_config[uv_disabled-check]
tests.integration_tests.test_source_test_fixture ‑ test_check_fail_on_missing_config[uv_disabled-read]
tests.integration_tests.test_source_test_fixture ‑ test_check_fail_on_missing_config[uv_disabled-read_stream]
tests.integration_tests.test_source_test_fixture ‑ test_check_fail_on_missing_config[uv_enabled-check]
tests.integration_tests.test_source_test_fixture ‑ test_check_fail_on_missing_config[uv_enabled-read]
tests.integration_tests.test_source_test_fixture ‑ test_check_fail_on_missing_config[uv_enabled-read_stream]
tests.integration_tests.test_source_test_fixture ‑ test_dataset_list_and_len[uv_disabled]
tests.integration_tests.test_source_test_fixture ‑ test_dataset_list_and_len[uv_enabled]
tests.integration_tests.test_source_test_fixture ‑ test_docker_only_connector[uv_disabled]
tests.integration_tests.test_source_test_fixture ‑ test_docker_only_connector[uv_enabled]
tests.integration_tests.test_source_test_fixture ‑ test_ensure_installation_detection[uv_disabled]
tests.integration_tests.test_source_test_fixture ‑ test_ensure_installation_detection[uv_enabled]
tests.integration_tests.test_source_test_fixture ‑ test_failing_path_connector[uv_disabled]
tests.integration_tests.test_source_test_fixture ‑ test_failing_path_connector[uv_enabled]
tests.integration_tests.test_source_test_fixture ‑ test_file_write_and_cleanup[uv_disabled]
tests.integration_tests.test_source_test_fixture ‑ test_file_write_and_cleanup[uv_enabled]
tests.integration_tests.test_source_test_fixture ‑ test_get_records_result_as_list[uv_disabled]
tests.integration_tests.test_source_test_fixture ‑ test_get_records_result_as_list[uv_enabled]
tests.integration_tests.test_source_test_fixture ‑ test_install_uninstall[uv_disabled]
tests.integration_tests.test_source_test_fixture ‑ test_install_uninstall[uv_enabled]
tests.integration_tests.test_source_test_fixture ‑ test_invalid_config[uv_disabled]
tests.integration_tests.test_source_test_fixture ‑ test_invalid_config[uv_enabled]
tests.integration_tests.test_source_test_fixture ‑ test_lazy_dataset_from_source[uv_disabled]
tests.integration_tests.test_source_test_fixture ‑ test_lazy_dataset_from_source[uv_enabled]
tests.integration_tests.test_source_test_fixture ‑ test_list_streams[uv_disabled]
tests.integration_tests.test_source_test_fixture ‑ test_list_streams[uv_enabled]
tests.integration_tests.test_source_test_fixture ‑ test_merge_streams_in_cache[uv_disabled]
tests.integration_tests.test_source_test_fixture ‑ test_merge_streams_in_cache[uv_enabled]
tests.integration_tests.test_source_test_fixture ‑ test_non_existing_connector[uv_disabled]
tests.integration_tests.test_source_test_fixture ‑ test_non_existing_connector[uv_enabled]
tests.integration_tests.test_source_test_fixture ‑ test_non_existing_connector_with_local_exe[uv_disabled]
tests.integration_tests.test_source_test_fixture ‑ test_non_existing_connector_with_local_exe[uv_enabled]
tests.integration_tests.test_source_test_fixture ‑ test_read_from_cache[uv_disabled]
tests.integration_tests.test_source_test_fixture ‑ test_read_from_cache[uv_enabled]
tests.integration_tests.test_source_test_fixture ‑ test_read_isolated_by_prefix[uv_disabled]
tests.integration_tests.test_source_test_fixture ‑ test_read_isolated_by_prefix[uv_enabled]
tests.integration_tests.test_source_test_fixture ‑ test_read_result_as_list[uv_disabled]
tests.integration_tests.test_source_test_fixture ‑ test_read_result_as_list[uv_enabled]
tests.integration_tests.test_source_test_fixture ‑ test_read_result_mapping[uv_disabled]
tests.integration_tests.test_source_test_fixture ‑ test_read_result_mapping[uv_enabled]
tests.integration_tests.test_source_test_fixture ‑ test_read_stream_nonexisting[uv_disabled]
tests.integration_tests.test_source_test_fixture ‑ test_read_stream_nonexisting[uv_enabled]
tests.integration_tests.test_source_test_fixture ‑ test_registry_get[uv_disabled]
tests.integration_tests.test_source_test_fixture ‑ test_registry_get[uv_enabled]
tests.integration_tests.test_source_test_fixture ‑ test_registry_list[uv_disabled]
tests.integration_tests.test_source_test_fixture ‑ test_registry_list[uv_enabled]
tests.integration_tests.test_source_test_fixture ‑ test_source_yaml_spec[uv_disabled]
tests.integration_tests.test_source_test_fixture ‑ test_source_yaml_spec[uv_enabled]
tests.integration_tests.test_source_test_fixture ‑ test_succeeding_path_connector[uv_disabled]
tests.integration_tests.test_source_test_fixture ‑ test_succeeding_path_connector[uv_enabled]
tests.integration_tests.test_source_test_fixture ‑ test_sync_limited_streams[uv_disabled]
tests.integration_tests.test_source_test_fixture ‑ test_sync_limited_streams[uv_enabled]
tests.integration_tests.test_source_test_fixture ‑ test_sync_to_duckdb[uv_disabled]
tests.integration_tests.test_source_test_fixture ‑ test_sync_to_duckdb[uv_enabled]
tests.integration_tests.test_source_test_fixture ‑ test_sync_to_postgres[uv_disabled]
tests.integration_tests.test_source_test_fixture ‑ test_sync_to_postgres[uv_enabled]
tests.integration_tests.test_source_test_fixture ‑ test_sync_to_snowflake[uv_disabled]
tests.integration_tests.test_source_test_fixture ‑ test_sync_to_snowflake[uv_enabled]
tests.integration_tests.test_source_test_fixture ‑ test_sync_with_merge_to_duckdb[uv_disabled]
tests.integration_tests.test_source_test_fixture ‑ test_sync_with_merge_to_duckdb[uv_enabled]
tests.integration_tests.test_source_test_fixture ‑ test_sync_with_merge_to_postgres[uv_disabled]
tests.integration_tests.test_source_test_fixture ‑ test_sync_with_merge_to_postgres[uv_enabled]
tests.integration_tests.test_source_test_fixture ‑ test_version_enforcement[uv_disabled-0.0.1-0.0.1-False]
tests.integration_tests.test_source_test_fixture ‑ test_version_enforcement[uv_disabled-0.0.1-None-False]
tests.integration_tests.test_source_test_fixture ‑ test_version_enforcement[uv_disabled-0.0.1-latest-False]
tests.integration_tests.test_source_test_fixture ‑ test_version_enforcement[uv_disabled-1.2.3-1.2.3-True]
tests.integration_tests.test_source_test_fixture ‑ test_version_enforcement[uv_disabled-1.2.3-None-False]
tests.integration_tests.test_source_test_fixture ‑ test_version_enforcement[uv_disabled-1.2.3-latest-True]
tests.integration_tests.test_source_test_fixture ‑ test_version_enforcement[uv_enabled-0.0.1-0.0.1-False]
tests.integration_tests.test_source_test_fixture ‑ test_version_enforcement[uv_enabled-0.0.1-None-False]
tests.integration_tests.test_source_test_fixture ‑ test_version_enforcement[uv_enabled-0.0.1-latest-False]
tests.integration_tests.test_source_test_fixture ‑ test_version_enforcement[uv_enabled-1.2.3-1.2.3-True]
tests.integration_tests.test_source_test_fixture ‑ test_version_enforcement[uv_enabled-1.2.3-None-False]
tests.integration_tests.test_source_test_fixture ‑ test_version_enforcement[uv_enabled-1.2.3-latest-True]
tests.integration_tests.test_state_handling ‑ test_destination_state
tests.integration_tests.test_state_handling ‑ test_destination_state_writer
tests.integration_tests.test_state_handling ‑ test_incremental_state_cache_persistence
tests.integration_tests.test_state_handling ‑ test_incremental_state_prefix_isolation
tests.integration_tests.test_validation ‑ test_validate_check_failure[uv_disabled]
tests.integration_tests.test_validation ‑ test_validate_check_failure[uv_enabled]
tests.integration_tests.test_validation ‑ test_validate_config_failure[uv_disabled]
tests.integration_tests.test_validation ‑ test_validate_config_failure[uv_enabled]
tests.integration_tests.test_validation ‑ test_validate_success[uv_disabled]
tests.integration_tests.test_validation ‑ test_validate_success[uv_enabled]
tests.integration_tests.test_validation ‑ test_validate_success_install_only[uv_disabled]
tests.integration_tests.test_validation ‑ test_validate_success_install_only[uv_enabled]
tests.unit_tests.sources.test_source_key_overrides ‑ test_get_configured_catalog_composite_primary_key
tests.unit_tests.sources.test_source_key_overrides ‑ test_get_configured_catalog_parametrized[None-None-expected_cursor0-expected_pk0]
tests.unit_tests.sources.test_source_key_overrides ‑ test_get_configured_catalog_parametrized[None-custom_pk-expected_cursor2-expected_pk2]
tests.unit_tests.sources.test_source_key_overrides ‑ test_get_configured_catalog_parametrized[None-pk_override4-expected_cursor4-expected_pk4]
tests.unit_tests.sources.test_source_key_overrides ‑ test_get_configured_catalog_parametrized[custom_cursor-None-expected_cursor1-expected_pk1]
tests.unit_tests.sources.test_source_key_overrides ‑ test_get_configured_catalog_parametrized[custom_cursor-custom_pk-expected_cursor3-expected_pk3]
tests.unit_tests.sources.test_source_key_overrides ‑ test_get_configured_catalog_with_overrides
tests.unit_tests.sources.test_source_key_overrides ‑ test_get_configured_catalog_without_overrides
tests.unit_tests.sources.test_source_key_overrides ‑ test_set_cursor_key
tests.unit_tests.sources.test_source_key_overrides ‑ test_set_cursor_keys
tests.unit_tests.sources.test_source_key_overrides ‑ test_set_primary_key[input_key1-expected_output1]
tests.unit_tests.sources.test_source_key_overrides ‑ test_set_primary_key[input_key2-expected_output2]
tests.unit_tests.sources.test_source_key_overrides ‑ test_set_primary_key[pk1-expected_output0]
tests.unit_tests.sources.test_source_key_overrides ‑ test_set_primary_keys[input_keys0-expected_output0]
tests.unit_tests.sources.test_source_key_overrides ‑ test_set_primary_keys[input_keys1-expected_output1]
tests.unit_tests.sources.test_source_key_overrides ‑ test_set_primary_keys[input_keys2-expected_output2]
tests.unit_tests.sources.test_source_key_overrides ‑ test_set_primary_keys[input_keys3-expected_output3]
tests.unit_tests.sources.test_source_key_overrides ‑ test_source_init_with_different_override_combinations[None-None]
tests.unit_tests.sources.test_source_key_overrides ‑ test_source_init_with_different_override_combinations[None-primary_key_overrides2]
tests.unit_tests.sources.test_source_key_overrides ‑ test_source_init_with_different_override_combinations[cursor_overrides1-None]
tests.unit_tests.sources.test_source_key_overrides ‑ test_source_init_with_different_override_combinations[cursor_overrides3-primary_key_overrides3]
tests.unit_tests.sources.test_source_key_overrides ‑ test_source_init_with_overrides
tests.unit_tests.test_anonymous_usage_stats ‑ test_do_not_track[1]
tests.unit_tests.test_anonymous_usage_stats ‑ test_do_not_track[t]
tests.unit_tests.test_anonymous_usage_stats ‑ test_do_not_track[true]
tests.unit_tests.test_anonymous_usage_stats ‑ test_get_analytics_id
tests.unit_tests.test_anonymous_usage_stats ‑ test_setup_analytics_corrupt_file
tests.unit_tests.test_anonymous_usage_stats ‑ test_setup_analytics_existing_file
tests.unit_tests.test_anonymous_usage_stats ‑ test_setup_analytics_missing_file
tests.unit_tests.test_anonymous_usage_stats ‑ test_setup_analytics_read_only_filesystem
tests.unit_tests.test_anonymous_usage_stats ‑ test_telemetry_track
tests.unit_tests.test_caches ‑ test_duck_db_cache_base_inheritance
tests.unit_tests.test_caches ‑ test_duck_db_cache_config_default_schema_name
tests.unit_tests.test_caches ‑ test_duck_db_cache_config_get_database_name
tests.unit_tests.test_caches ‑ test_duck_db_cache_config_get_database_name_with_default_schema_name
tests.unit_tests.test_caches ‑ test_duck_db_cache_config_get_sql_alchemy_url
tests.unit_tests.test_caches ‑ test_duck_db_cache_config_get_sql_alchemy_url_with_default_schema_name
tests.unit_tests.test_caches ‑ test_duck_db_cache_config_inheritance
tests.unit_tests.test_caches ‑ test_duck_db_cache_config_inheritance_from_sql_cache_config_base
tests.unit_tests.test_caches ‑ test_duck_db_cache_config_initialization
tests.unit_tests.test_caches ‑ test_get_sql_alchemy_url
tests.unit_tests.test_caches ‑ test_get_sql_alchemy_url_with_default_schema_name
tests.unit_tests.test_exceptions ‑ test_exceptions
tests.unit_tests.test_lowcode_connectors ‑ test_nocode_execution[source-pokeapi-config0]
tests.unit_tests.test_pip_helpers ‑ test_connector_pip_url[source-coin-api-my-branch-None-git+https://github.com/airbytehq/airbyte.git@my-branch#egg=source-coin-api&subdirectory=airbyte-integrations/connectors/source-coin-api]
tests.unit_tests.test_pip_helpers ‑ test_connector_pip_url[source-coin-api-my-branch-my-fork-git+https://github.com/my-fork/airbyte.git@my-branch#egg=source-coin-api&subdirectory=airbyte-integrations/connectors/source-coin-api]
tests.unit_tests.test_pip_helpers ‑ test_github_pip_url[airbytehq-airbyte-None-None-None-git+https://github.com/airbytehq/airbyte.git]
tests.unit_tests.test_pip_helpers ‑ test_github_pip_url[airbytehq-airbyte-master-None-None-git+https://github.com/airbytehq/airbyte.git@master]
tests.unit_tests.test_pip_helpers ‑ test_github_pip_url[airbytehq-airbyte-my-branch-None-None-git+https://github.com/airbytehq/airbyte.git@my-branch]
tests.unit_tests.test_pip_helpers ‑ test_github_pip_url[airbytehq-airbyte-my-branch-airbyte-lib-None-git+https://github.com/airbytehq/airbyte.git@my-branch#egg=airbyte-lib]
tests.unit_tests.test_pip_helpers ‑ test_github_pip_url[airbytehq-airbyte-my-branch-airbyte-lib-airbyte-lib-git+https://github.com/airbytehq/airbyte.git@my-branch#egg=airbyte-lib&subdirectory=airbyte-lib]
tests.unit_tests.test_processors ‑ test_snowflake_cache_config_data_retention_time_in_days
tests.unit_tests.test_processors ‑ test_snowflake_cache_config_no_data_retention_time_in_days
tests.unit_tests.test_progress ‑ test_ci_environment_a_progress_style
tests.unit_tests.test_progress ‑ test_ci_environment_b_progress_style
tests.unit_tests.test_progress ‑ test_default_progress_style
tests.unit_tests.test_progress ‑ test_get_elapsed_time_str
tests.unit_tests.test_progress ‑ test_get_time_str
tests.unit_tests.test_progress ‑ test_no_live_progress
tests.unit_tests.test_progress ‑ test_read_progress_initialization
tests.unit_tests.test_progress ‑ test_read_progress_log_batch_written
tests.unit_tests.test_progress ‑ test_read_progress_log_batches_finalized
tests.unit_tests.test_progress ‑ test_read_progress_log_batches_finalizing
tests.unit_tests.test_progress ‑ test_read_progress_log_records_read
tests.unit_tests.test_progress ‑ test_read_progress_log_stream_finalized
tests.unit_tests.test_progress ‑ test_rich_unavailable_progress_style
tests.unit_tests.test_snowflake_config.TestGetPrivateKeyBytes ‑ test_get_private_key_bytes_invalid_key_format
tests.unit_tests.test_snowflake_config.TestGetPrivateKeyBytes ‑ test_get_private_key_bytes_with_passphrase
tests.unit_tests.test_snowflake_config.TestGetPrivateKeyBytes ‑ test_get_private_key_bytes_without_passphrase
tests.unit_tests.test_snowflake_config.TestGetPrivateKeyBytes ‑ test_get_private_key_bytes_wrong_passphrase
tests.unit_tests.test_snowflake_config.TestGetPrivateKeyContent ‑ test_get_private_key_content_file_not_found
tests.unit_tests.test_snowflake_config.TestGetPrivateKeyContent ‑ test_get_private_key_content_from_file_path
tests.unit_tests.test_snowflake_config.TestGetPrivateKeyContent ‑ test_get_private_key_content_from_private_key
tests.unit_tests.test_snowflake_config.TestGetPrivateKeyContent ‑ test_get_private_key_content_no_key_provided
tests.unit_tests.test_snowflake_config.TestGetSqlAlchemyConnectArgs ‑ test_get_sql_alchemy_connect_args_no_private_key
tests.unit_tests.test_snowflake_config.TestGetSqlAlchemyConnectArgs ‑ test_get_sql_alchemy_connect_args_with_private_key
tests.unit_tests.test_snowflake_config.TestGetSqlAlchemyConnectArgs ‑ test_get_sql_alchemy_connect_args_with_private_key_path
tests.unit_tests.test_snowflake_config.TestGetSqlAlchemyUrl ‑ test_get_sql_alchemy_url_with_password
tests.unit_tests.test_snowflake_config.TestGetSqlAlchemyUrl ‑ test_get_sql_alchemy_url_without_password
tests.unit_tests.test_snowflake_config.TestGetVendorClient ‑ test_get_vendor_client_with_password
tests.unit_tests.test_snowflake_config.TestGetVendorClient ‑ test_get_vendor_client_with_private_key_path
tests.unit_tests.test_snowflake_config.TestGetVendorClient ‑ test_get_vendor_client_with_private_key_string
tests.unit_tests.test_snowflake_config.TestValidateAuthenticationConfig ‑ test_validate_all_three_auth_methods
tests.unit_tests.test_snowflake_config.TestValidateAuthenticationConfig ‑ test_validate_multiple_primary_auth_methods
tests.unit_tests.test_snowflake_config.TestValidateAuthenticationConfig ‑ test_validate_no_authentication_method
tests.unit_tests.test_snowflake_config.TestValidateAuthenticationConfig ‑ test_validate_passphrase_with_password
tests.unit_tests.test_snowflake_config.TestValidateAuthenticationConfig ‑ test_validate_passphrase_without_primary_auth
tests.unit_tests.test_snowflake_config.TestValidateAuthenticationConfig ‑ test_validate_password_and_private_key_path
tests.unit_tests.test_snowflake_config.TestValidateAuthenticationConfig ‑ test_validate_password_only
tests.unit_tests.test_snowflake_config.TestValidateAuthenticationConfig ‑ test_validate_private_key_only
tests.unit_tests.test_snowflake_config.TestValidateAuthenticationConfig ‑ test_validate_private_key_path_only
tests.unit_tests.test_snowflake_config.TestValidateAuthenticationConfig ‑ test_validate_private_key_path_with_passphrase
tests.unit_tests.test_snowflake_config.TestValidateAuthenticationConfig ‑ test_validate_private_key_with_passphrase
tests.unit_tests.test_text_normalization ‑ test_case_insensitive_dict
tests.unit_tests.test_text_normalization ‑ test_case_insensitive_dict_w
tests.unit_tests.test_text_normalization ‑ test_case_insensitive_w_pretty_keys
tests.unit_tests.test_text_normalization ‑ test_lower_case_normalizer[!@$--True-LowerCaseNormalizer]
tests.unit_tests.test_text_normalization ‑ test_lower_case_normalizer[*--True-LowerCaseNormalizer]
tests.unit_tests.test_text_normalization ‑ test_lower_case_normalizer[+#$--True-LowerCaseNormalizer]
tests.unit_tests.test_text_normalization ‑ test_lower_case_normalizer[+--True-LowerCaseNormalizer]
tests.unit_tests.test_text_normalization ‑ test_lower_case_normalizer[+1-_1-False-LowerCaseNormalizer]
tests.unit_tests.test_text_normalization ‑ test_lower_case_normalizer[--True-LowerCaseNormalizer]
tests.unit_tests.test_text_normalization ‑ test_lower_case_normalizer[-1-_1-False-LowerCaseNormalizer]
tests.unit_tests.test_text_normalization ‑ test_lower_case_normalizer[1-_1-False-LowerCaseNormalizer]
tests.unit_tests.test_text_normalization ‑ test_lower_case_normalizer[2-_2-False-LowerCaseNormalizer]
tests.unit_tests.test_text_normalization ‑ test_lower_case_normalizer[3-_3-False-LowerCaseNormalizer]
tests.unit_tests.test_text_normalization ‑ test_lower_case_normalizer[ANOTHER-TEST-another_test-False-LowerCaseNormalizer]
tests.unit_tests.test_text_normalization ‑ test_lower_case_normalizer[Test.String-test_string-False-PostgresNormalizer]
tests.unit_tests.test_text_normalization ‑ test_lower_case_normalizer[Test_String-test_string-False-LowerCaseNormalizer]
tests.unit_tests.test_text_normalization ‑ test_lower_case_normalizer[_airbyte_meta-_airbyte_meta-False-LowerCaseNormalizer]
tests.unit_tests.test_text_normalization ‑ test_lower_case_normalizer[aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-False-LowerCaseNormalizer]
tests.unit_tests.test_text_normalization ‑ test_lower_case_normalizer[aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-False-PostgresNormalizer]
tests.unit_tests.test_text_normalization ‑ test_lower_case_normalizer[aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-False-PostgresNormalizer]
tests.unit_tests.test_text_normalization ‑ test_lower_case_normalizer[aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-False-LowerCaseNormalizer]
tests.unit_tests.test_text_normalization ‑ test_lower_case_normalizer[aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-False-PostgresNormalizer]
tests.unit_tests.test_text_normalization ‑ test_lower_case_normalizer[aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa-False-LowerCaseNormalizer]
tests.unit_tests.test_text_normalization ‑ test_lower_case_normalizer[another.test-another_test-False-LowerCaseNormalizer]
tests.unit_tests.test_text_normalization ‑ test_lower_case_normalizer[sales (#)-sales____-False-LowerCaseNormalizer]
tests.unit_tests.test_text_normalization ‑ test_lower_case_normalizer[sales (%)-sales____-False-LowerCaseNormalizer]
tests.unit_tests.test_text_normalization ‑ test_lower_case_normalizer[sales(#)-sales___-False-LowerCaseNormalizer]
tests.unit_tests.test_text_normalization ‑ test_lower_case_normalizer[sales(%)-sales___-False-LowerCaseNormalizer]
tests.unit_tests.test_text_normalization ‑ test_lower_case_normalizer[sales-#-sales__-False-LowerCaseNormalizer]
tests.unit_tests.test_text_normalization ‑ test_lower_case_normalizer[sales-%-sales__-False-LowerCaseNormalizer]
tests.unit_tests.test_text_normalization ‑ test_lower_case_normalizer[sales--(#)-sales_____-False-LowerCaseNormalizer]
tests.unit_tests.test_text_normalization ‑ test_lower_case_normalizer[some.col-some_col-False-LowerCaseNormalizer]
tests.unit_tests.test_text_normalization ‑ test_lower_case_normalizer[something_-_-_-_else-something_______else-False-LowerCaseNormalizer]
tests.unit_tests.test_text_normalization ‑ test_record_columns_list
tests.unit_tests.test_type_translation ‑ test_to_airbyte_subtype[json_schema_property_def0-string-None]
tests.unit_tests.test_type_translation ‑ test_to_airbyte_subtype[json_schema_property_def1-number-None]
tests.unit_tests.test_type_translation ‑ test_to_airbyte_subtype[json_schema_property_def2-array-None]
tests.unit_tests.test_type_translation ‑ test_to_airbyte_subtype[json_schema_property_def3-object-None]
tests.unit_tests.test_type_translation ‑ test_to_airbyte_subtype[json_schema_property_def4-array-string]
tests.unit_tests.test_type_translation ‑ test_to_airbyte_subtype[json_schema_property_def5-array-boolean]
tests.unit_tests.test_type_translation ‑ test_to_airbyte_subtype[json_schema_property_def6-array-None]
tests.unit_tests.test_type_translation ‑ test_to_airbyte_subtype[json_schema_property_def7-array-None]
tests.unit_tests.test_type_translation ‑ test_to_airbyte_type[json_schema_property_def0-string-None]
tests.unit_tests.test_type_translation ‑ test_to_airbyte_type[json_schema_property_def1-boolean-None]
tests.unit_tests.test_type_translation ‑ test_to_airbyte_type[json_schema_property_def10-time_with_timezone-None]
tests.unit_tests.test_type_translation ‑ test_to_airbyte_type[json_schema_property_def11-integer-None]
tests.unit_tests.test_type_translation ‑ test_to_airbyte_type[json_schema_property_def12-integer-None]
tests.unit_tests.test_type_translation ‑ test_to_airbyte_type[json_schema_property_def13-number-None]
tests.unit_tests.test_type_translation ‑ test_to_airbyte_type[json_schema_property_def14-array-None]
tests.unit_tests.test_type_translation ‑ test_to_airbyte_type[json_schema_property_def15-array-None]
tests.unit_tests.test_type_translation ‑ test_to_airbyte_type[json_schema_property_def16-array-None]
tests.unit_tests.test_type_translation ‑ test_to_airbyte_type[json_schema_property_def17-object-None]
tests.unit_tests.test_type_translation ‑ test_to_airbyte_type[json_schema_property_def18-None-SQLTypeConversionError]
tests.unit_tests.test_type_translation ‑ test_to_airbyte_type[json_schema_property_def19-None-SQLTypeConversionError]
tests.unit_tests.test_type_translation ‑ test_to_airbyte_type[json_schema_property_def2-boolean-None]
tests.unit_tests.test_type_translation ‑ test_to_airbyte_type[json_schema_property_def20-None-SQLTypeConversionError]
tests.unit_tests.test_type_translation ‑ test_to_airbyte_type[json_schema_property_def21-array-None]
tests.unit_tests.test_type_translation ‑ test_to_airbyte_type[json_schema_property_def22-array-None]
tests.unit_tests.test_type_translation ‑ test_to_airbyte_type[json_schema_property_def3-string-None]
tests.unit_tests.test_type_translation ‑ test_to_airbyte_type[json_schema_property_def4-string-None]
tests.unit_tests.test_type_translation ‑ test_to_airbyte_type[json_schema_property_def5-boolean-None]
tests.unit_tests.test_type_translation ‑ test_to_airbyte_type[json_schema_property_def6-date-None]
tests.unit_tests.test_type_translation ‑ test_to_airbyte_type[json_schema_property_def7-timestamp_without_timezone-None]
tests.unit_tests.test_type_translation ‑ test_to_airbyte_type[json_schema_property_def8-timestamp_with_timezone-None]
tests.unit_tests.test_type_translation ‑ test_to_airbyte_type[json_schema_property_def9-time_without_timezone-None]
tests.unit_tests.test_type_translation ‑ test_to_sql_type[json_schema_property_def0-VARCHAR]
tests.unit_tests.test_type_translation ‑ test_to_sql_type[json_schema_property_def1-BOOLEAN]
tests.unit_tests.test_type_translation ‑ test_to_sql_type[json_schema_property_def10-TIMESTAMP]
tests.unit_tests.test_type_translation ‑ test_to_sql_type[json_schema_property_def11-TIMESTAMP]
tests.unit_tests.test_type_translation ‑ test_to_sql_type[json_schema_property_def12-TIME]
tests.unit_tests.test_type_translation ‑ test_to_sql_type[json_schema_property_def13-TIME]
tests.unit_tests.test_type_translation ‑ test_to_sql_type[json_schema_property_def14-BIGINT]
tests.unit_tests.test_type_translation ‑ test_to_sql_type[json_schema_property_def15-BIGINT]
tests.unit_tests.test_type_translation ‑ test_to_sql_type[json_schema_property_def16-DECIMAL]
tests.unit_tests.test_type_translation ‑ test_to_sql_type[json_schema_property_def17-JSON]
tests.unit_tests.test_type_translation ‑ test_to_sql_type[json_schema_property_def18-JSON]
tests.unit_tests.test_type_translation ‑ test_to_sql_type[json_schema_property_def19-JSON]
tests.unit_tests.test_type_translation ‑ test_to_sql_type[json_schema_property_def2-BOOLEAN]
tests.unit_tests.test_type_translation ‑ test_to_sql_type[json_schema_property_def20-JSON]
tests.unit_tests.test_type_translation ‑ test_to_sql_type[json_schema_property_def21-VARCHAR]
tests.unit_tests.test_type_translation ‑ test_to_sql_type[json_schema_property_def22-JSON]
tests.unit_tests.test_type_translation ‑ test_to_sql_type[json_schema_property_def23-JSON]
tests.unit_tests.test_type_translation ‑ test_to_sql_type[json_schema_property_def3-VARCHAR]
tests.unit_tests.test_type_translation ‑ test_to_sql_type[json_schema_property_def4-VARCHAR]
tests.unit_tests.test_type_translation ‑ test_to_sql_type[json_schema_property_def5-BOOLEAN]
tests.unit_tests.test_type_translation ‑ test_to_sql_type[json_schema_property_def6-DATE]
tests.unit_tests.test_type_translation ‑ test_to_sql_type[json_schema_property_def7-VARCHAR]
tests.unit_tests.test_type_translation ‑ test_to_sql_type[json_schema_property_def8-BOOLEAN]
tests.unit_tests.test_type_translation ‑ test_to_sql_type[json_schema_property_def9-DECIMAL]