Merge branch 'datahub-project:master' into master #1203
4 errors, 28 skipped, 1β185 pass in 1h 26m 43s
βββββββ8 filesβ Β±0βββββββββ8 suitesβ Β±0βββ1h 26m 43s β±οΈ + 3m 32s
1β217 tests +4ββ1β185 βοΈ +1ββ28 π€ Β±0ββ0 β β-β1ββ4 π₯ +4β
2β352 runsβ +8ββ2β288 βοΈ +6ββ60 π€ Β±0ββ0 β β-β2ββ4 π₯ +4β
Results for commit 9dfeaac.βΒ± Comparison against earlier commit f862eb9.
Annotations
Check failure on line 0 in tests.integration.kafka-connect.test_kafka_connect
github-actions / Unit Test Results (metadata ingestion)
1 out of 2 runs with error: test_kafka_connect_ingest (tests.integration.kafka-connect.test_kafka_connect)
artifacts/Test Results (metadata ingestion 3.10)/metadata-ingestion/junit.integrationbatch1.xmlβ[took 3m 57s]
Raw output
failed on setup with "Exception: Timeout reached while waiting on service!"
docker_compose_runner = <function docker_compose_runner.<locals>.run at 0x7efc6e4dc310>
pytestconfig = <_pytest.config.Config object at 0x7efcac2a9e10>
test_resources_dir = PosixPath('/home/runner/work/datahub/datahub/metadata-ingestion/tests/integration/kafka-connect')
@pytest.fixture(scope="module")
def kafka_connect_runner(docker_compose_runner, pytestconfig, test_resources_dir):
test_resources_dir_kafka = pytestconfig.rootpath / "tests/integration/kafka"
# Share Compose configurations between files and projects
# https://docs.docker.com/compose/extends/
docker_compose_file = [
str(test_resources_dir_kafka / "docker-compose.yml"),
str(test_resources_dir / "docker-compose.override.yml"),
]
with docker_compose_runner(
docker_compose_file, "kafka-connect", cleanup=False
) as docker_services:
wait_for_port(
docker_services,
"test_mysql",
3306,
timeout=120,
checker=lambda: is_mysql_up("test_mysql", 3306),
)
with docker_compose_runner(docker_compose_file, "kafka-connect") as docker_services:
# We sometimes run into issues where the broker fails to come up on the first try because
# of all the other processes that are running. By running docker compose twice, we can
# avoid some test flakes. How does this work? The "key" is the same between both
# calls to the docker_compose_runner and the first one sets cleanup=False.
> wait_for_port(docker_services, "test_broker", 29092, timeout=120)
tests/integration/kafka-connect/test_kafka_connect.py:72:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
tests/test_helpers/docker_helpers.py:36: in wait_for_port
docker_services.wait_until_responsive(
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = Services(_docker_compose=DockerComposeExecutor(_compose_command='docker compose', _compose_files=['/home/runner/work/d...tegration/kafka-connect/docker-compose.override.yml'], _compose_project_name='pytest4566-kafka-connect'), _services={})
check = <function wait_for_port.<locals>.<lambda> at 0x7efc6e4ddb40>
timeout = 120, pause = 0.5, clock = <built-in function perf_counter>
def wait_until_responsive(self, check, timeout, pause, clock=timeit.default_timer):
"""Wait until a service is responsive."""
ref = clock()
now = ref
while (now - ref) < timeout:
if check():
return
time.sleep(pause)
now = clock()
> raise Exception("Timeout reached while waiting on service!")
E Exception: Timeout reached while waiting on service!
venv/lib/python3.10/site-packages/pytest_docker/plugin.py:108: Exception
Check failure on line 0 in tests.integration.kafka-connect.test_kafka_connect
github-actions / Unit Test Results (metadata ingestion)
1 out of 2 runs with error: test_kafka_connect_mongosourceconnect_ingest (tests.integration.kafka-connect.test_kafka_connect)
artifacts/Test Results (metadata ingestion 3.10)/metadata-ingestion/junit.integrationbatch1.xmlβ[took 0s]
Raw output
failed on setup with "Exception: Timeout reached while waiting on service!"
docker_compose_runner = <function docker_compose_runner.<locals>.run at 0x7efc6e4dc310>
pytestconfig = <_pytest.config.Config object at 0x7efcac2a9e10>
test_resources_dir = PosixPath('/home/runner/work/datahub/datahub/metadata-ingestion/tests/integration/kafka-connect')
@pytest.fixture(scope="module")
def kafka_connect_runner(docker_compose_runner, pytestconfig, test_resources_dir):
test_resources_dir_kafka = pytestconfig.rootpath / "tests/integration/kafka"
# Share Compose configurations between files and projects
# https://docs.docker.com/compose/extends/
docker_compose_file = [
str(test_resources_dir_kafka / "docker-compose.yml"),
str(test_resources_dir / "docker-compose.override.yml"),
]
with docker_compose_runner(
docker_compose_file, "kafka-connect", cleanup=False
) as docker_services:
wait_for_port(
docker_services,
"test_mysql",
3306,
timeout=120,
checker=lambda: is_mysql_up("test_mysql", 3306),
)
with docker_compose_runner(docker_compose_file, "kafka-connect") as docker_services:
# We sometimes run into issues where the broker fails to come up on the first try because
# of all the other processes that are running. By running docker compose twice, we can
# avoid some test flakes. How does this work? The "key" is the same between both
# calls to the docker_compose_runner and the first one sets cleanup=False.
> wait_for_port(docker_services, "test_broker", 29092, timeout=120)
tests/integration/kafka-connect/test_kafka_connect.py:72:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
tests/test_helpers/docker_helpers.py:36: in wait_for_port
docker_services.wait_until_responsive(
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = Services(_docker_compose=DockerComposeExecutor(_compose_command='docker compose', _compose_files=['/home/runner/work/d...tegration/kafka-connect/docker-compose.override.yml'], _compose_project_name='pytest4566-kafka-connect'), _services={})
check = <function wait_for_port.<locals>.<lambda> at 0x7efc6e4ddb40>
timeout = 120, pause = 0.5, clock = <built-in function perf_counter>
def wait_until_responsive(self, check, timeout, pause, clock=timeit.default_timer):
"""Wait until a service is responsive."""
ref = clock()
now = ref
while (now - ref) < timeout:
if check():
return
time.sleep(pause)
now = clock()
> raise Exception("Timeout reached while waiting on service!")
E Exception: Timeout reached while waiting on service!
venv/lib/python3.10/site-packages/pytest_docker/plugin.py:108: Exception
Check failure on line 0 in tests.integration.kafka-connect.test_kafka_connect
github-actions / Unit Test Results (metadata ingestion)
1 out of 2 runs with error: test_kafka_connect_s3sink_ingest (tests.integration.kafka-connect.test_kafka_connect)
artifacts/Test Results (metadata ingestion 3.10)/metadata-ingestion/junit.integrationbatch1.xmlβ[took 0s]
Raw output
failed on setup with "Exception: Timeout reached while waiting on service!"
docker_compose_runner = <function docker_compose_runner.<locals>.run at 0x7efc6e4dc310>
pytestconfig = <_pytest.config.Config object at 0x7efcac2a9e10>
test_resources_dir = PosixPath('/home/runner/work/datahub/datahub/metadata-ingestion/tests/integration/kafka-connect')
@pytest.fixture(scope="module")
def kafka_connect_runner(docker_compose_runner, pytestconfig, test_resources_dir):
test_resources_dir_kafka = pytestconfig.rootpath / "tests/integration/kafka"
# Share Compose configurations between files and projects
# https://docs.docker.com/compose/extends/
docker_compose_file = [
str(test_resources_dir_kafka / "docker-compose.yml"),
str(test_resources_dir / "docker-compose.override.yml"),
]
with docker_compose_runner(
docker_compose_file, "kafka-connect", cleanup=False
) as docker_services:
wait_for_port(
docker_services,
"test_mysql",
3306,
timeout=120,
checker=lambda: is_mysql_up("test_mysql", 3306),
)
with docker_compose_runner(docker_compose_file, "kafka-connect") as docker_services:
# We sometimes run into issues where the broker fails to come up on the first try because
# of all the other processes that are running. By running docker compose twice, we can
# avoid some test flakes. How does this work? The "key" is the same between both
# calls to the docker_compose_runner and the first one sets cleanup=False.
> wait_for_port(docker_services, "test_broker", 29092, timeout=120)
tests/integration/kafka-connect/test_kafka_connect.py:72:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
tests/test_helpers/docker_helpers.py:36: in wait_for_port
docker_services.wait_until_responsive(
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = Services(_docker_compose=DockerComposeExecutor(_compose_command='docker compose', _compose_files=['/home/runner/work/d...tegration/kafka-connect/docker-compose.override.yml'], _compose_project_name='pytest4566-kafka-connect'), _services={})
check = <function wait_for_port.<locals>.<lambda> at 0x7efc6e4ddb40>
timeout = 120, pause = 0.5, clock = <built-in function perf_counter>
def wait_until_responsive(self, check, timeout, pause, clock=timeit.default_timer):
"""Wait until a service is responsive."""
ref = clock()
now = ref
while (now - ref) < timeout:
if check():
return
time.sleep(pause)
now = clock()
> raise Exception("Timeout reached while waiting on service!")
E Exception: Timeout reached while waiting on service!
venv/lib/python3.10/site-packages/pytest_docker/plugin.py:108: Exception
Check failure on line 0 in tests.integration.kafka-connect.test_kafka_connect
github-actions / Unit Test Results (metadata ingestion)
1 out of 2 runs with error: test_kafka_connect_ingest_stateful (tests.integration.kafka-connect.test_kafka_connect)
artifacts/Test Results (metadata ingestion 3.10)/metadata-ingestion/junit.integrationbatch1.xmlβ[took 0s]
Raw output
failed on setup with "Exception: Timeout reached while waiting on service!"
docker_compose_runner = <function docker_compose_runner.<locals>.run at 0x7efc6e4dc310>
pytestconfig = <_pytest.config.Config object at 0x7efcac2a9e10>
test_resources_dir = PosixPath('/home/runner/work/datahub/datahub/metadata-ingestion/tests/integration/kafka-connect')
@pytest.fixture(scope="module")
def kafka_connect_runner(docker_compose_runner, pytestconfig, test_resources_dir):
test_resources_dir_kafka = pytestconfig.rootpath / "tests/integration/kafka"
# Share Compose configurations between files and projects
# https://docs.docker.com/compose/extends/
docker_compose_file = [
str(test_resources_dir_kafka / "docker-compose.yml"),
str(test_resources_dir / "docker-compose.override.yml"),
]
with docker_compose_runner(
docker_compose_file, "kafka-connect", cleanup=False
) as docker_services:
wait_for_port(
docker_services,
"test_mysql",
3306,
timeout=120,
checker=lambda: is_mysql_up("test_mysql", 3306),
)
with docker_compose_runner(docker_compose_file, "kafka-connect") as docker_services:
# We sometimes run into issues where the broker fails to come up on the first try because
# of all the other processes that are running. By running docker compose twice, we can
# avoid some test flakes. How does this work? The "key" is the same between both
# calls to the docker_compose_runner and the first one sets cleanup=False.
> wait_for_port(docker_services, "test_broker", 29092, timeout=120)
tests/integration/kafka-connect/test_kafka_connect.py:72:
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
tests/test_helpers/docker_helpers.py:36: in wait_for_port
docker_services.wait_until_responsive(
_ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _
self = Services(_docker_compose=DockerComposeExecutor(_compose_command='docker compose', _compose_files=['/home/runner/work/d...tegration/kafka-connect/docker-compose.override.yml'], _compose_project_name='pytest4566-kafka-connect'), _services={})
check = <function wait_for_port.<locals>.<lambda> at 0x7efc6e4ddb40>
timeout = 120, pause = 0.5, clock = <built-in function perf_counter>
def wait_until_responsive(self, check, timeout, pause, clock=timeit.default_timer):
"""Wait until a service is responsive."""
ref = clock()
now = ref
while (now - ref) < timeout:
if check():
return
time.sleep(pause)
now = clock()
> raise Exception("Timeout reached while waiting on service!")
E Exception: Timeout reached while waiting on service!
venv/lib/python3.10/site-packages/pytest_docker/plugin.py:108: Exception
Check notice on line 0 in .github
github-actions / Unit Test Results (metadata ingestion)
28 skipped tests found
There are 28 skipped tests, see "Raw output" for the full list of skipped tests.
Raw output
tests.integration.git.test_git_clone β test_git_clone_private
tests.integration.hana.test_hana β test_hana_ingest
tests.integration.snowflake.test_snowflake_classification β test_snowflake_classification_perf[1-10-1]
tests.integration.snowflake.test_snowflake_classification β test_snowflake_classification_perf[1-40-1]
tests.integration.snowflake.test_snowflake_classification β test_snowflake_classification_perf[1-5-1]
tests.integration.snowflake.test_snowflake_classification β test_snowflake_classification_perf[1-80-1]
tests.integration.snowflake.test_snowflake_classification β test_snowflake_classification_perf[2-10-1]
tests.integration.snowflake.test_snowflake_classification β test_snowflake_classification_perf[2-40-1]
tests.integration.snowflake.test_snowflake_classification β test_snowflake_classification_perf[2-5-1]
tests.integration.snowflake.test_snowflake_classification β test_snowflake_classification_perf[2-80-1]
tests.integration.snowflake.test_snowflake_classification β test_snowflake_classification_perf[4-10-1]
tests.integration.snowflake.test_snowflake_classification β test_snowflake_classification_perf[4-40-1]
tests.integration.snowflake.test_snowflake_classification β test_snowflake_classification_perf[4-5-1]
tests.integration.snowflake.test_snowflake_classification β test_snowflake_classification_perf[4-80-1]
tests.integration.snowflake.test_snowflake_classification β test_snowflake_classification_perf[6-10-1]
tests.integration.snowflake.test_snowflake_classification β test_snowflake_classification_perf[6-40-1]
tests.integration.snowflake.test_snowflake_classification β test_snowflake_classification_perf[6-5-1]
tests.integration.snowflake.test_snowflake_classification β test_snowflake_classification_perf[6-80-1]
tests.integration.snowflake.test_snowflake_classification β test_snowflake_classification_perf[8-10-1]
tests.integration.snowflake.test_snowflake_classification β test_snowflake_classification_perf[8-40-1]
tests.integration.snowflake.test_snowflake_classification β test_snowflake_classification_perf[8-5-1]
tests.integration.snowflake.test_snowflake_classification β test_snowflake_classification_perf[8-80-1]
tests.integration.vertica.test_vertica β test_vertica_ingest_with_db
tests.unit.sql_parsing.test_sqlglot_lineage β test_bigquery_unnest_columns
tests.unit.test_cli_logging β test_cli_logging
tests.unit.test_cli_logging β test_extra_args_exception_suppressed
tests.unit.test_plugin_system β test_list_all[False]
tests.unit.test_plugin_system β test_list_all[True]
Check notice on line 0 in .github
github-actions / Unit Test Results (metadata ingestion)
1217 tests found (test 1 to 746)
There are 1217 tests, see "Raw output" for the list of tests 1 to 746.
Raw output
tests.integration.azure_ad.test_azure_ad β test_azure_ad_config
tests.integration.azure_ad.test_azure_ad β test_azure_ad_source_default_configs
tests.integration.azure_ad.test_azure_ad β test_azure_ad_source_empty_group_membership
tests.integration.azure_ad.test_azure_ad β test_azure_ad_source_nested_groups
tests.integration.azure_ad.test_azure_ad β test_azure_ad_stateful_ingestion
tests.integration.azure_ad.test_azure_ad β test_azure_source_ingestion_disabled
tests.integration.bigquery_v2.test_bigquery β test_bigquery_v2_ingest
tests.integration.business-glossary.test_business_glossary β test_auto_id_creation_on_reserved_char
tests.integration.business-glossary.test_business_glossary β test_glossary_ingest[False-glossary_events_golden.json]
tests.integration.business-glossary.test_business_glossary β test_glossary_ingest[True-glossary_events_auto_id_golden.json]
tests.integration.circuit_breaker.test_circuit_breaker β test_assertion_circuit_breaker_assertion_with_active_assertion
tests.integration.circuit_breaker.test_circuit_breaker β test_assertion_circuit_breaker_updated_at_after_last_assertion
tests.integration.circuit_breaker.test_circuit_breaker β test_assertion_circuit_breaker_with_empty_response
tests.integration.circuit_breaker.test_circuit_breaker β test_assertion_circuit_breaker_with_no_error
tests.integration.circuit_breaker.test_circuit_breaker β test_operation_circuit_breaker_with_empty_response
tests.integration.circuit_breaker.test_circuit_breaker β test_operation_circuit_breaker_with_not_recent_operation
tests.integration.circuit_breaker.test_circuit_breaker β test_operation_circuit_breaker_with_valid_response
tests.integration.clickhouse.test_clickhouse β test_clickhouse_ingest
tests.integration.clickhouse.test_clickhouse β test_clickhouse_ingest_uri_form
tests.integration.csv-enricher.test_csv_enricher β test_csv_enricher_config
tests.integration.csv-enricher.test_csv_enricher β test_csv_enricher_source
tests.integration.dbt.test_dbt β test_dbt_ingest[dbt-column-meta-mapping]
tests.integration.dbt.test_dbt β test_dbt_ingest[dbt-test-with-complex-owner-patterns]
tests.integration.dbt.test_dbt β test_dbt_ingest[dbt-test-with-data-platform-instance]
tests.integration.dbt.test_dbt β test_dbt_ingest[dbt-test-with-non-incremental-lineage]
tests.integration.dbt.test_dbt β test_dbt_ingest[dbt-test-with-schemas-dbt-enabled]
tests.integration.dbt.test_dbt β test_dbt_ingest[dbt-test-with-target-platform-instance]
tests.integration.dbt.test_dbt β test_dbt_only_test_definitions_and_results
tests.integration.dbt.test_dbt β test_dbt_tests
tests.integration.dbt.test_dbt β test_dbt_tests_only_assertions
tests.integration.dbt.test_dbt β test_resolve_athena_modified_type[array<struct<x bigint, y double>>-array]
tests.integration.dbt.test_dbt β test_resolve_athena_modified_type[bigint-bigint]
tests.integration.dbt.test_dbt β test_resolve_athena_modified_type[binary-binary]
tests.integration.dbt.test_dbt β test_resolve_athena_modified_type[boolean-boolean]
tests.integration.dbt.test_dbt β test_resolve_athena_modified_type[char-char]
tests.integration.dbt.test_dbt β test_resolve_athena_modified_type[date-date]
tests.integration.dbt.test_dbt β test_resolve_athena_modified_type[decimal(10,0)-decimal]
tests.integration.dbt.test_dbt β test_resolve_athena_modified_type[double-double]
tests.integration.dbt.test_dbt β test_resolve_athena_modified_type[float-float]
tests.integration.dbt.test_dbt β test_resolve_athena_modified_type[int-int]
tests.integration.dbt.test_dbt β test_resolve_athena_modified_type[integer-integer]
tests.integration.dbt.test_dbt β test_resolve_athena_modified_type[map<varchar, varchar>-map]
tests.integration.dbt.test_dbt β test_resolve_athena_modified_type[smallint-smallint]
tests.integration.dbt.test_dbt β test_resolve_athena_modified_type[struct<x timestamp(3), y timestamp>-struct]
tests.integration.dbt.test_dbt β test_resolve_athena_modified_type[timestamp(3)-timestamp]
tests.integration.dbt.test_dbt β test_resolve_athena_modified_type[timestamp-timestamp]
tests.integration.dbt.test_dbt β test_resolve_athena_modified_type[tinyint-tinyint]
tests.integration.dbt.test_dbt β test_resolve_athena_modified_type[varchar(20)-varchar]
tests.integration.dbt.test_dbt β test_resolve_trino_modified_type[array(row(x bigint, y double))-array]
tests.integration.dbt.test_dbt β test_resolve_trino_modified_type[bigint-bigint]
tests.integration.dbt.test_dbt β test_resolve_trino_modified_type[boolean-boolean]
tests.integration.dbt.test_dbt β test_resolve_trino_modified_type[char-char]
tests.integration.dbt.test_dbt β test_resolve_trino_modified_type[date-date]
tests.integration.dbt.test_dbt β test_resolve_trino_modified_type[decimal(10,0)-decimal]
tests.integration.dbt.test_dbt β test_resolve_trino_modified_type[double-double]
tests.integration.dbt.test_dbt β test_resolve_trino_modified_type[int-int]
tests.integration.dbt.test_dbt β test_resolve_trino_modified_type[integer-integer]
tests.integration.dbt.test_dbt β test_resolve_trino_modified_type[json-json]
tests.integration.dbt.test_dbt β test_resolve_trino_modified_type[map(varchar, varchar)-map]
tests.integration.dbt.test_dbt β test_resolve_trino_modified_type[real-real]
tests.integration.dbt.test_dbt β test_resolve_trino_modified_type[row(x bigint, y double)-row]
tests.integration.dbt.test_dbt β test_resolve_trino_modified_type[smallint-smallint]
tests.integration.dbt.test_dbt β test_resolve_trino_modified_type[time(12)-time]
tests.integration.dbt.test_dbt β test_resolve_trino_modified_type[time-time]
tests.integration.dbt.test_dbt β test_resolve_trino_modified_type[timestamp(3)-timestamp]
tests.integration.dbt.test_dbt β test_resolve_trino_modified_type[timestamp-timestamp]
tests.integration.dbt.test_dbt β test_resolve_trino_modified_type[tinyint-tinyint]
tests.integration.dbt.test_dbt β test_resolve_trino_modified_type[varbinary-varbinary]
tests.integration.dbt.test_dbt β test_resolve_trino_modified_type[varchar(20)-varchar]
tests.integration.delta_lake.test_delta_lake_minio β test_delta_lake_ingest
tests.integration.delta_lake.test_local_delta_lake β test_delta_lake[allow_table.json]
tests.integration.delta_lake.test_local_delta_lake β test_delta_lake[inner_table.json]
tests.integration.delta_lake.test_local_delta_lake β test_delta_lake[relative_path.json]
tests.integration.delta_lake.test_local_delta_lake β test_delta_lake[single_table.json]
tests.integration.delta_lake.test_local_delta_lake β test_delta_lake_incorrect_config_raises_error
tests.integration.dynamodb.test_dynamodb β test_dynamodb
tests.integration.feast.test_feast_repository β test_feast_repository_ingest
tests.integration.git.test_git_clone β test_base_url_guessing
tests.integration.git.test_git_clone β test_git_clone_private
tests.integration.git.test_git_clone β test_git_clone_public
tests.integration.git.test_git_clone β test_github_branch
tests.integration.great-expectations.test_great_expectations β test_ge_ingest[test_checkpoint-ge_mcps_golden.json]
tests.integration.great-expectations.test_great_expectations β test_ge_ingest[test_checkpoint_2-ge_mcps_golden_2.json]
tests.integration.hana.test_hana β test_hana_ingest
tests.integration.hive.test_hive β test_hive_ingest
tests.integration.hive.test_hive β test_hive_ingest_all_db
tests.integration.hive.test_hive β test_hive_instance_check
tests.integration.iceberg.test_iceberg β test_iceberg_ingest
tests.integration.iceberg.test_iceberg β test_iceberg_profiling
tests.integration.iceberg.test_iceberg β test_iceberg_stateful_ingest
tests.integration.kafka-connect.test_kafka_connect β test_kafka_connect_ingest
tests.integration.kafka-connect.test_kafka_connect β test_kafka_connect_ingest_stateful
tests.integration.kafka-connect.test_kafka_connect β test_kafka_connect_mongosourceconnect_ingest
tests.integration.kafka-connect.test_kafka_connect β test_kafka_connect_s3sink_ingest
tests.integration.kafka-connect.test_kafka_connect β test_kafka_connect_snowflake_sink_ingest
tests.integration.kafka.test_kafka β test_kafka_ingest
tests.integration.kafka.test_kafka_state β test_kafka_ingest_with_stateful
tests.integration.ldap.test_ldap β test_ldap_ingest
tests.integration.ldap.test_ldap β test_ldap_ingest_with_email_as_username
tests.integration.ldap.test_ldap β test_ldap_memberof_ingest
tests.integration.ldap.test_ldap_stateful β test_ldap_stateful
tests.integration.looker.test_looker β test_file_path_in_view_naming_pattern
tests.integration.looker.test_looker β test_independent_look_ingestion_config
tests.integration.looker.test_looker β test_independent_looks_ingest
tests.integration.looker.test_looker β test_independent_soft_deleted_looks
tests.integration.looker.test_looker β test_looker_ingest
tests.integration.looker.test_looker β test_looker_ingest_allow_pattern
tests.integration.looker.test_looker β test_looker_ingest_external_project_view
tests.integration.looker.test_looker β test_looker_ingest_joins
tests.integration.looker.test_looker β test_looker_ingest_stateful
tests.integration.looker.test_looker β test_looker_ingest_unaliased_joins
tests.integration.looker.test_looker β test_looker_ingest_usage_history
tests.integration.lookml.test_lookml β test_hive_platform_drops_ids
tests.integration.lookml.test_lookml β test_lookml_bad_sql_parser
tests.integration.lookml.test_lookml β test_lookml_base_folder
tests.integration.lookml.test_lookml β test_lookml_explore_refinement
tests.integration.lookml.test_lookml β test_lookml_git_info
tests.integration.lookml.test_lookml β test_lookml_ingest
tests.integration.lookml.test_lookml β test_lookml_ingest_api_bigquery
tests.integration.lookml.test_lookml β test_lookml_ingest_api_hive
tests.integration.lookml.test_lookml β test_lookml_ingest_offline
tests.integration.lookml.test_lookml β test_lookml_ingest_offline_platform_instance
tests.integration.lookml.test_lookml β test_lookml_ingest_offline_with_model_deny
tests.integration.lookml.test_lookml β test_lookml_ingest_stateful
tests.integration.lookml.test_lookml β test_lookml_refinement_include_order
tests.integration.lookml.test_lookml β test_lookml_refinement_ingest
tests.integration.lookml.test_lookml β test_lookml_view_merge
tests.integration.lookml.test_lookml β test_reachable_views
tests.integration.metabase.test_metabase β test_mode_ingest_failure
tests.integration.metabase.test_metabase β test_mode_ingest_success
tests.integration.mlflow.test_mlflow_source β test_ingestion
tests.integration.mode.test_mode β test_mode_ingest_failure
tests.integration.mode.test_mode β test_mode_ingest_success
tests.integration.mongodb.test_mongodb β test_mongodb_ingest
tests.integration.mysql.test_mysql β test_mysql_ingest_no_db[mysql_profile_table_level_only.yml-mysql_table_level_only.json]
tests.integration.mysql.test_mysql β test_mysql_ingest_no_db[mysql_profile_table_row_count_estimate_only.yml-mysql_table_row_count_estimate_only.json]
tests.integration.mysql.test_mysql β test_mysql_ingest_no_db[mysql_to_file_no_db.yml-mysql_mces_no_db_golden.json]
tests.integration.mysql.test_mysql β test_mysql_ingest_no_db[mysql_to_file_with_db.yml-mysql_mces_with_db_golden.json]
tests.integration.mysql.test_mysql β test_mysql_ingest_with_db_alias
tests.integration.nifi.test_nifi β test_nifi_ingest_cluster
tests.integration.nifi.test_nifi β test_nifi_ingest_standalone
tests.integration.okta.test_okta β test_okta_config
tests.integration.okta.test_okta β test_okta_source_custom_user_name_regex
tests.integration.okta.test_okta β test_okta_source_default_configs
tests.integration.okta.test_okta β test_okta_source_include_deprovisioned_suspended_users
tests.integration.okta.test_okta β test_okta_source_ingestion_disabled
tests.integration.okta.test_okta β test_okta_stateful_ingestion
tests.integration.openapi.test_openapi β test_openapi_ingest
tests.integration.oracle.test_oracle β test_oracle_source_integration_with_database
tests.integration.oracle.test_oracle β test_oracle_source_integration_with_out_database
tests.integration.postgres.test_postgres β test_postgres_ingest_with_all_db
tests.integration.postgres.test_postgres β test_postgres_ingest_with_db
tests.integration.powerbi.test_admin_only_api β test_admin_only_apis
tests.integration.powerbi.test_admin_only_api β test_most_config_and_modified_since
tests.integration.powerbi.test_m_parser β test_databricks_regular_case
tests.integration.powerbi.test_m_parser β test_expression_is_none
tests.integration.powerbi.test_m_parser β test_for_each_expression_1
tests.integration.powerbi.test_m_parser β test_for_each_expression_2
tests.integration.powerbi.test_m_parser β test_google_bigquery_1
tests.integration.powerbi.test_m_parser β test_google_bigquery_2
tests.integration.powerbi.test_m_parser β test_mssql_regular_case
tests.integration.powerbi.test_m_parser β test_mssql_with_query
tests.integration.powerbi.test_m_parser β test_multi_source_table
tests.integration.powerbi.test_m_parser β test_native_query_disabled
tests.integration.powerbi.test_m_parser β test_oracle_regular_case
tests.integration.powerbi.test_m_parser β test_parse_m_query1
tests.integration.powerbi.test_m_parser β test_parse_m_query10
tests.integration.powerbi.test_m_parser β test_parse_m_query11
tests.integration.powerbi.test_m_parser β test_parse_m_query12
tests.integration.powerbi.test_m_parser β test_parse_m_query13
tests.integration.powerbi.test_m_parser β test_parse_m_query2
tests.integration.powerbi.test_m_parser β test_parse_m_query3
tests.integration.powerbi.test_m_parser β test_parse_m_query4
tests.integration.powerbi.test_m_parser β test_parse_m_query5
tests.integration.powerbi.test_m_parser β test_parse_m_query6
tests.integration.powerbi.test_m_parser β test_parse_m_query7
tests.integration.powerbi.test_m_parser β test_parse_m_query8
tests.integration.powerbi.test_m_parser β test_parse_m_query9
tests.integration.powerbi.test_m_parser β test_postgres_regular_case
tests.integration.powerbi.test_m_parser β test_redshift_native_query
tests.integration.powerbi.test_m_parser β test_redshift_regular_case
tests.integration.powerbi.test_m_parser β test_snowflake_native_query
tests.integration.powerbi.test_m_parser β test_snowflake_regular_case
tests.integration.powerbi.test_m_parser β test_sqlglot_parser
tests.integration.powerbi.test_m_parser β test_table_combine
tests.integration.powerbi.test_native_sql_parser β test_join
tests.integration.powerbi.test_native_sql_parser β test_simple_from
tests.integration.powerbi.test_powerbi β test_admin_access_is_not_allowed
tests.integration.powerbi.test_powerbi β test_cll_extraction
tests.integration.powerbi.test_powerbi β test_cll_extraction_flags
tests.integration.powerbi.test_powerbi β test_dataset_type_mapping_error
tests.integration.powerbi.test_powerbi β test_dataset_type_mapping_should_set_to_all
tests.integration.powerbi.test_powerbi β test_extract_endorsements
tests.integration.powerbi.test_powerbi β test_extract_lineage
tests.integration.powerbi.test_powerbi β test_extract_reports
tests.integration.powerbi.test_powerbi β test_independent_datasets_extraction
tests.integration.powerbi.test_powerbi β test_override_ownership
tests.integration.powerbi.test_powerbi β test_powerbi_ingest
tests.integration.powerbi.test_powerbi β test_powerbi_ingest_urn_lower_case
tests.integration.powerbi.test_powerbi β test_powerbi_platform_instance_ingest
tests.integration.powerbi.test_powerbi β test_reports_with_failed_page_request
tests.integration.powerbi.test_powerbi β test_scan_all_workspaces
tests.integration.powerbi.test_powerbi β test_server_to_platform_map
tests.integration.powerbi.test_powerbi β test_workspace_container
tests.integration.powerbi.test_stateful_ingestion β test_powerbi_stateful_ingestion
tests.integration.powerbi_report_server.test_powerbi_report_server β test_powerbi_ingest
tests.integration.powerbi_report_server.test_powerbi_report_server β test_powerbi_ingest_with_failure
tests.integration.presto-on-hive.test_presto_on_hive β test_presto_on_hive_ingest[hive-False-False-False-False-_1]
tests.integration.presto-on-hive.test_presto_on_hive β test_presto_on_hive_ingest[hive-False-False-False-True-_5]
tests.integration.presto-on-hive.test_presto_on_hive β test_presto_on_hive_ingest[hive-False-False-True-False-_3]
tests.integration.presto-on-hive.test_presto_on_hive β test_presto_on_hive_ingest[presto-on-hive-True-True-False-False-_2]
tests.integration.presto-on-hive.test_presto_on_hive β test_presto_on_hive_ingest[presto-on-hive-True-True-True-False-_4]
tests.integration.presto-on-hive.test_presto_on_hive β test_presto_on_hive_instance_ingest
tests.integration.redshift-usage.test_redshift_usage β test_redshift_usage_config
tests.integration.redshift-usage.test_redshift_usage β test_redshift_usage_filtering
tests.integration.redshift-usage.test_redshift_usage β test_redshift_usage_source
tests.integration.remote.test_remote β test_remote_ingest
tests.integration.s3.test_s3 β test_data_lake_incorrect_config_raises_error
tests.integration.s3.test_s3 β test_data_lake_local_ingest[file_without_extension.json]
tests.integration.s3.test_s3 β test_data_lake_local_ingest[folder_no_partition.json]
tests.integration.s3.test_s3 β test_data_lake_local_ingest[folder_no_partition_exclude.json]
tests.integration.s3.test_s3 β test_data_lake_local_ingest[folder_no_partition_filename.json]
tests.integration.s3.test_s3 β test_data_lake_local_ingest[folder_no_partition_glob.json]
tests.integration.s3.test_s3 β test_data_lake_local_ingest[folder_partition_basic.json]
tests.integration.s3.test_s3 β test_data_lake_local_ingest[folder_partition_keyval.json]
tests.integration.s3.test_s3 β test_data_lake_local_ingest[folder_partition_update_schema.json]
tests.integration.s3.test_s3 β test_data_lake_local_ingest[multiple_files.json]
tests.integration.s3.test_s3 β test_data_lake_local_ingest[multiple_spec_for_files.json]
tests.integration.s3.test_s3 β test_data_lake_local_ingest[multiple_specs_of_different_buckets.json]
tests.integration.s3.test_s3 β test_data_lake_local_ingest[single_file.json]
tests.integration.s3.test_s3 β test_data_lake_s3_ingest[file_without_extension.json]
tests.integration.s3.test_s3 β test_data_lake_s3_ingest[folder_no_partition.json]
tests.integration.s3.test_s3 β test_data_lake_s3_ingest[folder_no_partition_exclude.json]
tests.integration.s3.test_s3 β test_data_lake_s3_ingest[folder_no_partition_filename.json]
tests.integration.s3.test_s3 β test_data_lake_s3_ingest[folder_no_partition_glob.json]
tests.integration.s3.test_s3 β test_data_lake_s3_ingest[folder_partition_basic.json]
tests.integration.s3.test_s3 β test_data_lake_s3_ingest[folder_partition_keyval.json]
tests.integration.s3.test_s3 β test_data_lake_s3_ingest[folder_partition_update_schema.json]
tests.integration.s3.test_s3 β test_data_lake_s3_ingest[multiple_files.json]
tests.integration.s3.test_s3 β test_data_lake_s3_ingest[multiple_spec_for_files.json]
tests.integration.s3.test_s3 β test_data_lake_s3_ingest[multiple_specs_of_different_buckets.json]
tests.integration.s3.test_s3 β test_data_lake_s3_ingest[single_file.json]
tests.integration.salesforce.test_salesforce β test_salesforce_ingest
tests.integration.snowflake.test_snowflake β test_snowflake_basic
tests.integration.snowflake.test_snowflake β test_snowflake_private_link
tests.integration.snowflake.test_snowflake_classification β test_snowflake_classification_perf[1-10-1]
tests.integration.snowflake.test_snowflake_classification β test_snowflake_classification_perf[1-40-1]
tests.integration.snowflake.test_snowflake_classification β test_snowflake_classification_perf[1-5-1]
tests.integration.snowflake.test_snowflake_classification β test_snowflake_classification_perf[1-80-1]
tests.integration.snowflake.test_snowflake_classification β test_snowflake_classification_perf[2-10-1]
tests.integration.snowflake.test_snowflake_classification β test_snowflake_classification_perf[2-40-1]
tests.integration.snowflake.test_snowflake_classification β test_snowflake_classification_perf[2-5-1]
tests.integration.snowflake.test_snowflake_classification β test_snowflake_classification_perf[2-80-1]
tests.integration.snowflake.test_snowflake_classification β test_snowflake_classification_perf[4-10-1]
tests.integration.snowflake.test_snowflake_classification β test_snowflake_classification_perf[4-40-1]
tests.integration.snowflake.test_snowflake_classification β test_snowflake_classification_perf[4-5-1]
tests.integration.snowflake.test_snowflake_classification β test_snowflake_classification_perf[4-80-1]
tests.integration.snowflake.test_snowflake_classification β test_snowflake_classification_perf[6-10-1]
tests.integration.snowflake.test_snowflake_classification β test_snowflake_classification_perf[6-40-1]
tests.integration.snowflake.test_snowflake_classification β test_snowflake_classification_perf[6-5-1]
tests.integration.snowflake.test_snowflake_classification β test_snowflake_classification_perf[6-80-1]
tests.integration.snowflake.test_snowflake_classification β test_snowflake_classification_perf[8-10-1]
tests.integration.snowflake.test_snowflake_classification β test_snowflake_classification_perf[8-40-1]
tests.integration.snowflake.test_snowflake_classification β test_snowflake_classification_perf[8-5-1]
tests.integration.snowflake.test_snowflake_classification β test_snowflake_classification_perf[8-80-1]
tests.integration.snowflake.test_snowflake_failures β test_snowflake_list_columns_error_causes_pipeline_warning
tests.integration.snowflake.test_snowflake_failures β test_snowflake_list_primary_keys_error_causes_pipeline_warning
tests.integration.snowflake.test_snowflake_failures β test_snowflake_missing_role_access_causes_pipeline_failure
tests.integration.snowflake.test_snowflake_failures β test_snowflake_missing_snowflake_lineage_permission_causes_pipeline_failure
tests.integration.snowflake.test_snowflake_failures β test_snowflake_missing_snowflake_operations_permission_causes_pipeline_failure
tests.integration.snowflake.test_snowflake_failures β test_snowflake_missing_warehouse_access_causes_pipeline_failure
tests.integration.snowflake.test_snowflake_failures β test_snowflake_no_databases_with_access_causes_pipeline_failure
tests.integration.snowflake.test_snowflake_failures β test_snowflake_no_tables_causes_pipeline_failure
tests.integration.snowflake.test_snowflake_failures β test_snowflake_unexpected_snowflake_view_lineage_error_causes_pipeline_warning
tests.integration.snowflake.test_snowflake_stateful β test_tableau_stateful
tests.integration.sql_server.test_sql_server β test_mssql_ingest[mssql_no_db_to_file.yml]
tests.integration.sql_server.test_sql_server β test_mssql_ingest[mssql_no_db_with_filter.yml]
tests.integration.sql_server.test_sql_server β test_mssql_ingest[mssql_to_file.yml]
tests.integration.sql_server.test_sql_server β test_mssql_ingest[mssql_with_lower_case_urn.yml]
tests.integration.starburst-trino-usage.test_starburst_trino_usage β test_trino_usage_config
tests.integration.starburst-trino-usage.test_starburst_trino_usage β test_trino_usage_source
tests.integration.superset.test_superset β test_superset_ingest
tests.integration.superset.test_superset β test_superset_stateful_ingest
tests.integration.tableau.test_tableau_ingest β test_extract_all_project
tests.integration.tableau.test_tableau_ingest β test_get_all_datasources_failure
tests.integration.tableau.test_tableau_ingest β test_lineage_overrides
tests.integration.tableau.test_tableau_ingest β test_project_hierarchy
tests.integration.tableau.test_tableau_ingest β test_project_path_pattern
tests.integration.tableau.test_tableau_ingest β test_project_pattern
tests.integration.tableau.test_tableau_ingest β test_tableau_cll_ingest
tests.integration.tableau.test_tableau_ingest β test_tableau_ingest
tests.integration.tableau.test_tableau_ingest β test_tableau_ingest_with_platform_instance
tests.integration.tableau.test_tableau_ingest β test_tableau_no_verify
tests.integration.tableau.test_tableau_ingest β test_tableau_signout_timeout
tests.integration.tableau.test_tableau_ingest β test_tableau_stateful
tests.integration.tableau.test_tableau_ingest β test_tableau_unsupported_csql
tests.integration.tableau.test_tableau_ingest β test_value_error_projects_and_project_pattern
tests.integration.trino.test_trino β test_trino_hive_ingest
tests.integration.trino.test_trino β test_trino_ingest
tests.integration.trino.test_trino β test_trino_instance_ingest
tests.integration.unity.test_unity_catalog_ingest β test_ingestion
tests.integration.vertica.test_vertica β test_vertica_ingest_with_db
tests.unit.api.entities.dataproducts.test_dataproduct β test_dataproduct_from_datahub
tests.unit.api.entities.dataproducts.test_dataproduct β test_dataproduct_from_yaml[update]
tests.unit.api.entities.dataproducts.test_dataproduct β test_dataproduct_from_yaml[upsert]
tests.unit.api.entities.dataproducts.test_dataproduct β test_dataproduct_patch_yaml[asset_add]
tests.unit.api.entities.dataproducts.test_dataproduct β test_dataproduct_patch_yaml[asset_remove]
tests.unit.api.test_report β test_report_to_string_sampled
tests.unit.api.test_report β test_report_to_string_unsampled
tests.unit.cli.test_quickstart_version_mapping β test_quickstart_forced_not_a_version_tag
tests.unit.cli.test_quickstart_version_mapping β test_quickstart_forced_stable
tests.unit.cli.test_quickstart_version_mapping β test_quickstart_get_older_version
tests.unit.cli.test_quickstart_version_mapping β test_quickstart_version_config
tests.unit.cli.test_quickstart_version_mapping β test_quickstart_version_config_default
tests.unit.cli.test_quickstart_version_mapping β test_quickstart_version_config_stable
tests.unit.config.test_config_enum β test_config_enum
tests.unit.config.test_config_loader β test_load_error[tests/unit/config/bad_complex_variable_expansion.yml-env3-MissingClosingBrace]
tests.unit.config.test_config_loader β test_load_error[tests/unit/config/bad_extension.whatevenisthis-env2-ConfigurationError]
tests.unit.config.test_config_loader β test_load_error[tests/unit/config/bad_variable_expansion.yml-env0-ParameterNullOrNotSet]
tests.unit.config.test_config_loader β test_load_error[tests/unit/config/this_file_does_not_exist.yml-env1-ConfigurationError]
tests.unit.config.test_config_loader β test_load_success[tests/unit/config/basic.toml-golden_config1-env1-None]
tests.unit.config.test_config_loader β test_load_success[tests/unit/config/basic.yml-golden_config0-env0-referenced_env_vars0]
tests.unit.config.test_config_loader β test_load_success[tests/unit/config/complex_variable_expansion.yml-golden_config3-env3-referenced_env_vars3]
tests.unit.config.test_config_loader β test_load_success[tests/unit/config/simple_variable_expansion.yml-golden_config2-env2-referenced_env_vars2]
tests.unit.config.test_config_loader β test_write_file_directive
tests.unit.config.test_config_model β test_config_redaction
tests.unit.config.test_config_model β test_default_object_copy
tests.unit.config.test_config_model β test_extras_allowed
tests.unit.config.test_config_model β test_extras_not_allowed
tests.unit.config.test_config_model β test_shared_defaults
tests.unit.config.test_datetime_parser β test_user_time_parser
tests.unit.data_lake.test_schema_inference β test_infer_schema_avro
tests.unit.data_lake.test_schema_inference β test_infer_schema_csv
tests.unit.data_lake.test_schema_inference β test_infer_schema_json
tests.unit.data_lake.test_schema_inference β test_infer_schema_parquet
tests.unit.data_lake.test_schema_inference β test_infer_schema_tsv
tests.unit.graph.test_client β test_get_aspect
tests.unit.graph.test_client β test_graphql_entity_types
tests.unit.patch.test_patch_builder β test_basic_dataset_patch_builder
tests.unit.patch.test_patch_builder β test_complex_dataset_patch
tests.unit.reporting.test_datahub_ingestion_reporter β test_default_config
tests.unit.reporting.test_datahub_ingestion_reporter β test_unique_key_gen[all_things]
tests.unit.reporting.test_datahub_ingestion_reporter β test_unique_key_gen[minimal]
tests.unit.reporting.test_datahub_ingestion_reporter β test_unique_key_gen[with_pipeline_name]
tests.unit.s3.test_s3_source β test_partition_comparator_numeric_folder_name
tests.unit.s3.test_s3_source β test_partition_comparator_numeric_folder_name2
tests.unit.s3.test_s3_source β test_partition_comparator_string_folder
tests.unit.s3.test_s3_source β test_partition_comparator_string_same_folder
tests.unit.s3.test_s3_source β test_partition_comparator_with_equal_sign_in_name
tests.unit.s3.test_s3_source β test_partition_comparator_with_numeric_partition
tests.unit.s3.test_s3_source β test_partition_comparator_with_padded_numeric_partition
tests.unit.s3.test_s3_source β test_partition_comparator_with_string_partition
tests.unit.s3.test_s3_source β test_partition_multi_level_key
tests.unit.s3.test_s3_source β test_path_spec
tests.unit.s3.test_s3_source β test_path_spec_dir_allowed
tests.unit.sagemaker.test_sagemaker_source β test_sagemaker_ingest
tests.unit.schema.test_json_schema_util β test_anyof_with_properties
tests.unit.schema.test_json_schema_util β test_array_handling
tests.unit.schema.test_json_schema_util β test_datahub_json_schemas_parses_okay
tests.unit.schema.test_json_schema_util β test_ignore_exceptions
tests.unit.schema.test_json_schema_util β test_json_sample_payment_schema_to_schema_fields_with_nesting
tests.unit.schema.test_json_schema_util β test_json_schema_to_events_with_nullable_fields[optional_field_via_union_type]
tests.unit.schema.test_json_schema_util β test_json_schema_to_mce_fields_sample_events_with_different_field_types
tests.unit.schema.test_json_schema_util β test_json_schema_to_mce_fields_toplevel_isnt_a_record
tests.unit.schema.test_json_schema_util β test_json_schema_to_record_with_two_fields
tests.unit.schema.test_json_schema_util β test_json_schema_to_schema_fields_with_nesting_across_records
tests.unit.schema.test_json_schema_util β test_json_schema_with_recursion
tests.unit.schema.test_json_schema_util β test_key_schema_handling
tests.unit.schema.test_json_schema_util β test_map_of_union_of_int_and_record_of_union
tests.unit.schema.test_json_schema_util β test_needs_disambiguation_nested_union_of_records_with_same_field_name
tests.unit.schema.test_json_schema_util β test_nested_arrays
tests.unit.schema.test_json_schema_util β test_non_str_enums
tests.unit.schema.test_json_schema_util β test_recursive_json
tests.unit.schema.test_json_schema_util β test_required_field
tests.unit.schema.test_json_schema_util β test_simple_array
tests.unit.schema.test_json_schema_util β test_simple_nested_record_with_a_string_field_for_key_schema
tests.unit.schema.test_json_schema_util β test_simple_object
tests.unit.schema.test_json_schema_util β test_simple_record_with_primitive_types
tests.unit.schema.test_json_schema_util β test_top_level_trival_allof
tests.unit.schema.test_json_schema_util β test_union_with_nested_record_of_union
tests.unit.serde.test_serde β test_check_mce_schema_failure[tests/unit/serde/test_serde_missing_field.json]
tests.unit.serde.test_serde β test_check_metadata_rewrite
tests.unit.serde.test_serde β test_check_metadata_schema[examples/mce_files/bootstrap_mce.json]
tests.unit.serde.test_serde β test_check_metadata_schema[examples/mce_files/mce_list.json]
tests.unit.serde.test_serde β test_check_metadata_schema[examples/mce_files/single_mce.json]
tests.unit.serde.test_serde β test_check_metadata_schema[tests/unit/serde/test_serde_backwards_compat.json]
tests.unit.serde.test_serde β test_check_metadata_schema[tests/unit/serde/test_serde_large.json]
tests.unit.serde.test_serde β test_check_metadata_schema[tests/unit/serde/test_serde_profile.json]
tests.unit.serde.test_serde β test_check_metadata_schema[tests/unit/serde/test_serde_usage.json]
tests.unit.serde.test_serde β test_field_discriminator
tests.unit.serde.test_serde β test_json_transforms[model0-ref_server_obj0]
tests.unit.serde.test_serde β test_missing_optional_in_union
tests.unit.serde.test_serde β test_missing_optional_simple
tests.unit.serde.test_serde β test_null_hiding
tests.unit.serde.test_serde β test_read_empty_dict
tests.unit.serde.test_serde β test_reserved_keywords
tests.unit.serde.test_serde β test_serde_to_avro[tests/unit/serde/test_serde_chart_snapshot.json]
tests.unit.serde.test_serde β test_serde_to_avro[tests/unit/serde/test_serde_extra_field.json]
tests.unit.serde.test_serde β test_serde_to_avro[tests/unit/serde/test_serde_large.json]
tests.unit.serde.test_serde β test_serde_to_json[tests/unit/serde/test_serde_chart_snapshot.json]
tests.unit.serde.test_serde β test_serde_to_json[tests/unit/serde/test_serde_large.json]
tests.unit.serde.test_serde β test_serde_to_json[tests/unit/serde/test_serde_patch.json]
tests.unit.serde.test_serde β test_serde_to_json[tests/unit/serde/test_serde_profile.json]
tests.unit.serde.test_serde β test_serde_to_json[tests/unit/serde/test_serde_usage.json]
tests.unit.serde.test_serde β test_type_error
tests.unit.serde.test_serde β test_unions_with_aliases_assumptions
tests.unit.serde.test_serde β test_write_optional_empty_dict
tests.unit.serde.test_urn_iterator β test_dataset_urn_lowercase_transformer
tests.unit.serde.test_urn_iterator β test_list_urns_upstream
tests.unit.serde.test_urn_iterator β test_upstream_lineage_urn_iterator
tests.unit.sql_parsing.test_sqlglot_lineage β test_bigquery_create_view_with_cte
tests.unit.sql_parsing.test_sqlglot_lineage β test_bigquery_from_sharded_table_wildcard
tests.unit.sql_parsing.test_sqlglot_lineage β test_bigquery_nested_subqueries
tests.unit.sql_parsing.test_sqlglot_lineage β test_bigquery_sharded_table_normalization
tests.unit.sql_parsing.test_sqlglot_lineage β test_bigquery_star_with_replace
tests.unit.sql_parsing.test_sqlglot_lineage β test_bigquery_unnest_columns
tests.unit.sql_parsing.test_sqlglot_lineage β test_bigquery_view_from_union
tests.unit.sql_parsing.test_sqlglot_lineage β test_create_table_ddl
tests.unit.sql_parsing.test_sqlglot_lineage β test_create_view_as_select
tests.unit.sql_parsing.test_sqlglot_lineage β test_expand_select_star_basic
tests.unit.sql_parsing.test_sqlglot_lineage β test_insert_as_select
tests.unit.sql_parsing.test_sqlglot_lineage β test_merge_from_union
tests.unit.sql_parsing.test_sqlglot_lineage β test_select_ambiguous_column_no_schema
tests.unit.sql_parsing.test_sqlglot_lineage β test_select_count
tests.unit.sql_parsing.test_sqlglot_lineage β test_select_from_struct_subfields
tests.unit.sql_parsing.test_sqlglot_lineage β test_select_from_union
tests.unit.sql_parsing.test_sqlglot_lineage β test_select_max
tests.unit.sql_parsing.test_sqlglot_lineage β test_select_max_with_schema
tests.unit.sql_parsing.test_sqlglot_lineage β test_select_with_ctes
tests.unit.sql_parsing.test_sqlglot_lineage β test_select_with_full_col_name
tests.unit.sql_parsing.test_sqlglot_lineage β test_snowflake_case_statement
tests.unit.sql_parsing.test_sqlglot_lineage β test_snowflake_column_normalization
tests.unit.sql_parsing.test_sqlglot_lineage β test_snowflake_ctas_column_normalization
tests.unit.sql_parsing.test_sqlglot_lineage β test_snowflake_default_normalization
tests.unit.stateful_ingestion.provider.test_datahub_ingestion_checkpointing_provider.TestDatahubIngestionCheckpointProvider β test_provider
tests.unit.stateful_ingestion.state.test_checkpoint β test_base85_upgrade_pickle_to_json
tests.unit.stateful_ingestion.state.test_checkpoint β test_checkpoint_serde[BaseSQLAlchemyCheckpointState]
tests.unit.stateful_ingestion.state.test_checkpoint β test_checkpoint_serde[BaseTimeWindowCheckpointState]
tests.unit.stateful_ingestion.state.test_checkpoint β test_serde_idempotence[BaseSQLAlchemyCheckpointState]
tests.unit.stateful_ingestion.state.test_checkpoint β test_serde_idempotence[BaseTimeWindowCheckpointState]
tests.unit.stateful_ingestion.state.test_checkpoint β test_state_forward_compatibility[base85-bz2-json]
tests.unit.stateful_ingestion.state.test_checkpoint β test_state_forward_compatibility[utf-8]
tests.unit.stateful_ingestion.state.test_checkpoint β test_supported_encodings
tests.unit.stateful_ingestion.state.test_redundant_run_skip_handler β test_failed_run_does_not_create_checkpoint
tests.unit.stateful_ingestion.state.test_redundant_run_skip_handler β test_redundant_run_job_ids
tests.unit.stateful_ingestion.state.test_redundant_run_skip_handler β test_redundant_run_skip_handler[start_time0-end_time0-True-None-None]
tests.unit.stateful_ingestion.state.test_redundant_run_skip_handler β test_redundant_run_skip_handler[start_time1-end_time1-False-suggested_start_time1-suggested_end_time1]
tests.unit.stateful_ingestion.state.test_redundant_run_skip_handler β test_redundant_run_skip_handler[start_time2-end_time2-True-None-None]
tests.unit.stateful_ingestion.state.test_redundant_run_skip_handler β test_redundant_run_skip_handler[start_time3-end_time3-False-suggested_start_time3-suggested_end_time3]
tests.unit.stateful_ingestion.state.test_redundant_run_skip_handler β test_redundant_run_skip_handler[start_time4-end_time4-False-suggested_start_time4-suggested_end_time4]
tests.unit.stateful_ingestion.state.test_redundant_run_skip_handler β test_redundant_run_skip_handler[start_time5-end_time5-False-suggested_start_time5-suggested_end_time5]
tests.unit.stateful_ingestion.state.test_redundant_run_skip_handler β test_redundant_run_skip_handler[start_time6-end_time6-False-suggested_start_time6-suggested_end_time6]
tests.unit.stateful_ingestion.state.test_redundant_run_skip_handler β test_redundant_run_skip_handler[start_time7-end_time7-False-suggested_start_time7-suggested_end_time7]
tests.unit.stateful_ingestion.state.test_redundant_run_skip_handler β test_redundant_run_skip_handler[start_time8-end_time8-False-suggested_start_time8-suggested_end_time8]
tests.unit.stateful_ingestion.state.test_redundant_run_skip_handler β test_successful_run_creates_checkpoint
tests.unit.stateful_ingestion.state.test_sql_common_state β test_deduplication_and_order_preservation
tests.unit.stateful_ingestion.state.test_sql_common_state β test_sql_common_state
tests.unit.stateful_ingestion.state.test_sql_common_state β test_state_backward_compat
tests.unit.stateful_ingestion.state.test_stale_entity_removal_handler β test_change_percent[change_100_percent_delta_empty_new]
tests.unit.stateful_ingestion.state.test_stale_entity_removal_handler β test_change_percent[change_100_percent_delta_non_empty_new]
tests.unit.stateful_ingestion.state.test_stale_entity_removal_handler β test_change_percent[change_25_percent_delta]
tests.unit.stateful_ingestion.state.test_stale_entity_removal_handler β test_change_percent[change_50_percent_delta]
tests.unit.stateful_ingestion.state.test_stale_entity_removal_handler β test_change_percent[change_75_percent_delta]
tests.unit.stateful_ingestion.state.test_stale_entity_removal_handler β test_change_percent[no_change_empty_old_and_new]
tests.unit.stateful_ingestion.state.test_stale_entity_removal_handler β test_change_percent[no_change_empty_old_and_non_empty_new]
tests.unit.stateful_ingestion.state.test_stale_entity_removal_handler β test_change_percent[no_change_non_empty_old_new_equals_old]
tests.unit.stateful_ingestion.state.test_stale_entity_removal_handler β test_change_percent[no_change_non_empty_old_new_superset_old]
tests.unit.stateful_ingestion.test_configs β test_state_provider_configs[checkpointing_bad_config]
tests.unit.stateful_ingestion.test_configs β test_state_provider_configs[checkpointing_default]
tests.unit.stateful_ingestion.test_configs β test_state_provider_configs[checkpointing_valid_full_config]
tests.unit.stateful_ingestion.test_configs β test_state_provider_configs[checkpointing_valid_simple_config]
tests.unit.stateful_ingestion.test_configs β test_state_provider_configs[stateful_ingestion_bad_config]
tests.unit.stateful_ingestion.test_configs β test_state_provider_configs[stateful_ingestion_default_disabled]
tests.unit.stateful_ingestion.test_configs β test_state_provider_configs[stateful_ingestion_default_enabled]
tests.unit.stateful_ingestion.test_configs β test_state_provider_configs[stateful_ingestion_full_custom]
tests.unit.stateful_ingestion.test_kafka_state β test_kafka_common_state
tests.unit.stateful_ingestion.test_kafka_state β test_kafka_state_migration
tests.unit.test_allow_deny β test_allow_all
tests.unit.test_allow_deny β test_case_sensitivity
tests.unit.test_allow_deny β test_default_deny
tests.unit.test_allow_deny β test_deny_all
tests.unit.test_allow_deny β test_fully_speced
tests.unit.test_allow_deny β test_is_allowed
tests.unit.test_allow_deny β test_prefix_match
tests.unit.test_allow_deny β test_single_table
tests.unit.test_apis β test_sinks_not_abstract
tests.unit.test_apis β test_sources_not_abstract
tests.unit.test_athena_source β test_athena_config_query_location_old_plus_new_value_not_allowed
tests.unit.test_athena_source β test_athena_config_staging_dir_is_set_as_query_result
tests.unit.test_athena_source β test_athena_get_table_properties
tests.unit.test_athena_source β test_athena_uri
tests.unit.test_bigquery_lineage β test_column_level_lineage
tests.unit.test_bigquery_lineage β test_lineage_with_timestamps
tests.unit.test_bigquery_profiler β test_generate_day_partitioned_partition_profiler_query
tests.unit.test_bigquery_profiler β test_generate_day_partitioned_partition_profiler_query_with_set_partition_time
tests.unit.test_bigquery_profiler β test_generate_hour_partitioned_partition_profiler_query
tests.unit.test_bigquery_profiler β test_generate_ingestion_partitioned_partition_profiler_query
tests.unit.test_bigquery_profiler β test_generate_sharded_table_profiler_query
tests.unit.test_bigquery_profiler β test_not_generate_partition_profiler_query_if_not_partitioned_sharded_table
tests.unit.test_bigquery_source β test_bigquery_uri
tests.unit.test_bigquery_source β test_bigquery_uri_on_behalf
tests.unit.test_bigquery_source β test_bigquery_uri_with_credential
tests.unit.test_bigquery_source β test_gen_view_dataset_workunits
tests.unit.test_bigquery_source β test_get_dataplatform_instance_aspect_returns_project_id
tests.unit.test_bigquery_source β test_get_dataplatform_instance_default_no_instance
tests.unit.test_bigquery_source β test_get_projects_by_list
tests.unit.test_bigquery_source β test_get_projects_filter_by_pattern
tests.unit.test_bigquery_source β test_get_projects_list_empty
tests.unit.test_bigquery_source β test_get_projects_list_failure
tests.unit.test_bigquery_source β test_get_projects_list_fully_filtered
tests.unit.test_bigquery_source β test_get_projects_with_project_ids
tests.unit.test_bigquery_source β test_get_projects_with_project_ids_overrides_project_id_pattern
tests.unit.test_bigquery_source β test_get_projects_with_single_project_id
tests.unit.test_bigquery_source β test_get_table_and_shard_custom_shard_pattern[2023-None-2023]
tests.unit.test_bigquery_source β test_get_table_and_shard_custom_shard_pattern[20231215-None-20231215]
tests.unit.test_bigquery_source β test_get_table_and_shard_custom_shard_pattern[project.dataset.2023-project.dataset.2023-None]
tests.unit.test_bigquery_source β test_get_table_and_shard_custom_shard_pattern[project.dataset.20231215-project.dataset.20231215-None]
tests.unit.test_bigquery_source β test_get_table_and_shard_custom_shard_pattern[project.dataset.table-project.dataset.table-None]
tests.unit.test_bigquery_source β test_get_table_and_shard_custom_shard_pattern[project.dataset.table_2023-project.dataset.table-2023]
tests.unit.test_bigquery_source β test_get_table_and_shard_custom_shard_pattern[project.dataset.table_20231215-project.dataset.table-20231215]
tests.unit.test_bigquery_source β test_get_table_and_shard_custom_shard_pattern[table-table-None]
tests.unit.test_bigquery_source β test_get_table_and_shard_custom_shard_pattern[table20231215-table20231215-None]
tests.unit.test_bigquery_source β test_get_table_and_shard_custom_shard_pattern[table_1624046611-table-1624046611]
tests.unit.test_bigquery_source β test_get_table_and_shard_custom_shard_pattern[table_1624046611000-table_1624046611000-None]
tests.unit.test_bigquery_source β test_get_table_and_shard_custom_shard_pattern[table_1624046611000_name-table_1624046611000_name-None]
tests.unit.test_bigquery_source β test_get_table_and_shard_custom_shard_pattern[table_2023-table-2023]
tests.unit.test_bigquery_source β test_get_table_and_shard_custom_shard_pattern[table_20231215-table-20231215]
tests.unit.test_bigquery_source β test_get_table_and_shard_default[20231215-None-20231215]
tests.unit.test_bigquery_source β test_get_table_and_shard_default[project.dataset.20231215-project.dataset.20231215-None]
tests.unit.test_bigquery_source β test_get_table_and_shard_default[project.dataset.table-project.dataset.table-None]
tests.unit.test_bigquery_source β test_get_table_and_shard_default[project.dataset.table_2023-project.dataset.table_2023-None]
tests.unit.test_bigquery_source β test_get_table_and_shard_default[project.dataset.table_20231215-project.dataset.table-20231215]
tests.unit.test_bigquery_source β test_get_table_and_shard_default[table-table-None]
tests.unit.test_bigquery_source β test_get_table_and_shard_default[table20231215-table20231215-None]
tests.unit.test_bigquery_source β test_get_table_and_shard_default[table_1624046611000-table_1624046611000-None]
tests.unit.test_bigquery_source β test_get_table_and_shard_default[table_1624046611000_name-table_1624046611000_name-None]
tests.unit.test_bigquery_source β test_get_table_and_shard_default[table_20231215-table-20231215]
tests.unit.test_bigquery_source β test_get_table_name[project.dataset.20230112-project.dataset.dataset]
tests.unit.test_bigquery_source β test_get_table_name[project.dataset.table-project.dataset.table]
tests.unit.test_bigquery_source β test_get_table_name[project.dataset.table20231215-project.dataset.table20231215]
tests.unit.test_bigquery_source β test_get_table_name[[email protected]]
tests.unit.test_bigquery_source β test_get_table_name[[email protected]]
tests.unit.test_bigquery_source β test_get_table_name[[email protected]]
tests.unit.test_bigquery_source β test_get_table_name[[email protected]]
tests.unit.test_bigquery_source β test_get_table_name[[email protected]]
tests.unit.test_bigquery_source β test_get_table_name[project.dataset.table@1624046611000-1612046611000-project.dataset.table]
tests.unit.test_bigquery_source β test_get_table_name[[email protected]]
tests.unit.test_bigquery_source β test_get_table_name[project.dataset.table_*-project.dataset.table]
tests.unit.test_bigquery_source β test_get_table_name[project.dataset.table_1624046611000-project.dataset.table_1624046611000]
tests.unit.test_bigquery_source β test_get_table_name[project.dataset.table_1624046611000_name-project.dataset.table_1624046611000_name]
tests.unit.test_bigquery_source β test_get_table_name[project.dataset.table_2023*-project.dataset.table]
tests.unit.test_bigquery_source β test_get_table_name[project.dataset.table_202301*-project.dataset.table]
tests.unit.test_bigquery_source β test_get_table_name[project.dataset.table_20231215-project.dataset.table]
tests.unit.test_bigquery_source β test_get_views_for_dataset
tests.unit.test_bigquery_source β test_platform_instance_config_always_none
tests.unit.test_bigquery_source β test_simple_upstream_table_generation
tests.unit.test_bigquery_source β test_table_processing_logic
tests.unit.test_bigquery_source β test_table_processing_logic_date_named_tables
tests.unit.test_bigquery_source β test_upstream_table_column_lineage_with_temp_table
tests.unit.test_bigquery_source β test_upstream_table_generation_with_temporary_table_with_multiple_temp_upstream
tests.unit.test_bigquery_source β test_upstream_table_generation_with_temporary_table_without_temp_upstream
tests.unit.test_bigquery_sql_lineage β test_bigquery_sql_lineage_camel_case_dataset
tests.unit.test_bigquery_sql_lineage β test_bigquery_sql_lineage_camel_case_table
tests.unit.test_bigquery_sql_lineage β test_bigquery_sql_lineage_camel_case_table_and_dataset
tests.unit.test_bigquery_sql_lineage β test_bigquery_sql_lineage_camel_case_table_and_dataset_joins
tests.unit.test_bigquery_sql_lineage β test_bigquery_sql_lineage_camel_case_table_and_dataset_joins_and_subquery
tests.unit.test_bigquery_sql_lineage β test_bigquery_sql_lineage_camel_case_table_and_dataset_subquery
tests.unit.test_bigquery_sql_lineage β test_bigquery_sql_lineage_create_or_replace_view_name_with_hyphens_is_accepted
tests.unit.test_bigquery_sql_lineage β test_bigquery_sql_lineage_cte_alias_as_keyword_is_accepted
tests.unit.test_bigquery_sql_lineage β test_bigquery_sql_lineage_from_as_column_name_is_accepted
tests.unit.test_bigquery_sql_lineage β test_bigquery_sql_lineage_hash_as_comment_sign_is_accepted
tests.unit.test_bigquery_sql_lineage β test_bigquery_sql_lineage_keyword_admin_is_accepted
tests.unit.test_bigquery_sql_lineage β test_bigquery_sql_lineage_keyword_data_is_accepted
tests.unit.test_bigquery_sql_lineage β test_bigquery_sql_lineage_source_table_name_with_hyphens_is_accepted
tests.unit.test_bigquery_sql_parser β test_bigquery_sql_parser_comment_sign_switched_correctly
tests.unit.test_bigquery_sql_parser β test_bigquery_sql_parser_comments_are_removed
tests.unit.test_bigquery_sql_parser β test_bigquery_sql_parser_field_name_is_not_escaped_after_keyword_from_in_datetime_functions
tests.unit.test_bigquery_sql_parser β test_bigquery_sql_parser_first_cte_name_is_escaped
tests.unit.test_bigquery_sql_parser β test_bigquery_sql_parser_formats_input_sql
tests.unit.test_bigquery_sql_parser β test_bigquery_sql_parser_keyword_from_is_escaped_if_used_as_fieldname
tests.unit.test_bigquery_sql_parser β test_bigquery_sql_parser_object_name_is_escaped_after_keyword_from
tests.unit.test_bigquery_sql_parser β test_bigquery_sql_parser_subquery
tests.unit.test_bigquery_sql_parser β test_bigquery_sql_parser_table_name_is_escaped_at_create_statement
tests.unit.test_bigquery_sql_parser β test_bigquery_sql_parser_view_name_is_escaped_at_create_statement
tests.unit.test_bigquery_sql_parser β test_bigquery_sql_parser_with_parenthesis_in_from
tests.unit.test_bigquery_sql_parser β test_bigquery_sql_parser_with_semicolon_in_from
tests.unit.test_bigquery_sql_parser β test_remove_comma_before_from
tests.unit.test_bigquery_usage β test_get_tables_from_query
tests.unit.test_bigquery_usage β test_operational_stats
tests.unit.test_bigquery_usage β test_usage_counts_multiple_buckets_and_resources_no_view_usage
tests.unit.test_bigquery_usage β test_usage_counts_multiple_buckets_and_resources_view_usage
tests.unit.test_bigquery_usage β test_usage_counts_no_columns
tests.unit.test_bigquery_usage β test_usage_counts_no_query_event
tests.unit.test_bigquery_usage β test_usage_counts_single_bucket_resource_project
tests.unit.test_bigqueryv2_usage_source β test_bigquery_table_sanitasitation
tests.unit.test_bigqueryv2_usage_source β test_bigqueryv2_filters
tests.unit.test_bigqueryv2_usage_source β test_bigqueryv2_uri_with_credential
tests.unit.test_bq_get_partition_range β test_get_partition_range_from_partition_id
tests.unit.test_capability_report β test_basic_capability_report
tests.unit.test_check β test_check_local_docker
tests.unit.test_check β test_cli_help
tests.unit.test_check β test_cli_version
tests.unit.test_check_upgrade β test_is_client_server_compatible
tests.unit.test_classification β test_custom_info_type_config
tests.unit.test_classification β test_default_classification_config
tests.unit.test_classification β test_default_datahub_classifier_config
tests.unit.test_classification β test_incorrect_custom_info_type_config
tests.unit.test_classification β test_selective_datahub_classifier_config_override
tests.unit.test_cli_logging β test_cli_logging
tests.unit.test_cli_logging β test_extra_args_exception_suppressed
tests.unit.test_cli_utils β test_correct_url_when_gms_host_and_port_set
tests.unit.test_cli_utils β test_correct_url_when_gms_host_in_old_format
tests.unit.test_cli_utils β test_correct_url_when_gms_host_port_url_protocol_set
tests.unit.test_cli_utils β test_correct_url_when_gms_host_port_url_set
tests.unit.test_cli_utils β test_correct_url_when_url_set
tests.unit.test_cli_utils β test_first_non_null
tests.unit.test_clickhouse_source β test_clickhouse_uri_default_password
tests.unit.test_clickhouse_source β test_clickhouse_uri_https
tests.unit.test_clickhouse_source β test_clickhouse_uri_https_backward_compatibility
tests.unit.test_clickhouse_source β test_clickhouse_uri_native
tests.unit.test_clickhouse_source β test_clickhouse_uri_native_secure
tests.unit.test_clickhouse_source β test_clickhouse_uri_native_secure_backward_compatibility
tests.unit.test_codegen β test_cannot_instantiate_codegen_aspect
tests.unit.test_codegen β test_class_filter
tests.unit.test_codegen β test_codegen_aspect_name
tests.unit.test_codegen β test_codegen_aspects
tests.unit.test_codegen β test_entity_registry_completeness
tests.unit.test_codegen β test_key_aspect_info
tests.unit.test_codegen β test_urn_annotation
tests.unit.test_compare_metadata β test_basic_diff_only_owner_change
tests.unit.test_compare_metadata β test_basic_diff_owner_change
tests.unit.test_compare_metadata β test_basic_diff_same
tests.unit.test_config_clean β test_remove_protocol_http
tests.unit.test_config_clean β test_remove_protocol_http_accidental_multiple
tests.unit.test_config_clean β test_remove_protocol_https
tests.unit.test_config_clean β test_remove_suffix
tests.unit.test_config_clean β test_url_with_multiple_slashes
tests.unit.test_config_clean β test_url_with_suffix
tests.unit.test_config_clean β test_url_without_slash_suffix
tests.unit.test_confluent_schema_registry.ConfluentSchemaRegistryTest β test_get_schema_str_replace_confluent_ref_avro
tests.unit.test_corp_group_urn.TestCorpGroupUrn β test_invalid_urn
tests.unit.test_corp_group_urn.TestCorpGroupUrn β test_parse_urn
tests.unit.test_corpuser_urn.TestCorpuserUrn β test_invalid_urn
tests.unit.test_corpuser_urn.TestCorpuserUrn β test_parse_urn
tests.unit.test_csv_enricher_source β test_get_resource_description_no_description
tests.unit.test_csv_enricher_source β test_get_resource_description_work_unit_produced
tests.unit.test_csv_enricher_source β test_get_resource_domain_no_domain
tests.unit.test_csv_enricher_source β test_get_resource_domain_work_unit_produced
tests.unit.test_csv_enricher_source β test_get_resource_glossary_terms_no_new_glossary_terms
tests.unit.test_csv_enricher_source β test_get_resource_glossary_terms_work_unit_no_terms
tests.unit.test_csv_enricher_source β test_get_resource_glossary_terms_work_unit_produced
tests.unit.test_csv_enricher_source β test_get_resource_owners_no_new_owners
tests.unit.test_csv_enricher_source β test_get_resource_owners_work_unit_no_terms
tests.unit.test_csv_enricher_source β test_get_resource_owners_work_unit_produced
tests.unit.test_csv_enricher_source β test_get_resource_tags_no_new_tags
tests.unit.test_csv_enricher_source β test_get_resource_tags_work_unit_no_tags
tests.unit.test_csv_enricher_source β test_get_resource_tags_work_unit_produced
tests.unit.test_data_flow_urn.TestDataFlowUrn β test_invalid_urn
tests.unit.test_data_flow_urn.TestDataFlowUrn β test_parse_urn
tests.unit.test_data_job_urn.TestDataJobUrn β test_invalid_urn
tests.unit.test_data_job_urn.TestDataJobUrn β test_parse_urn
tests.unit.test_data_process_instance_urn.TestDomainUrn β test_invalid_urn
tests.unit.test_data_process_instance_urn.TestDomainUrn β test_parse_urn
tests.unit.test_dataset_urn.TestDatasetUrn β test_invalid_urn
tests.unit.test_dataset_urn.TestDatasetUrn β test_parse_urn
tests.unit.test_dbt_source β test_dbt_entity_emission_configuration
tests.unit.test_dbt_source β test_dbt_entity_emission_configuration_helpers
tests.unit.test_dbt_source β test_dbt_source_patching_no_conflict
tests.unit.test_dbt_source β test_dbt_source_patching_no_new
tests.unit.test_dbt_source β test_dbt_source_patching_tags
tests.unit.test_dbt_source β test_dbt_source_patching_terms
tests.unit.test_dbt_source β test_dbt_source_patching_with_conflict
tests.unit.test_dbt_source β test_dbt_source_patching_with_conflict_null_source_type_in_existing_owner
tests.unit.test_dbt_source β test_default_convert_column_urns_to_lowercase
tests.unit.test_domain_urn.TestDomainUrn β test_invalid_urn
tests.unit.test_domain_urn.TestDomainUrn β test_parse_urn
tests.unit.test_druid_source β test_druid_uri
tests.unit.test_elasticsearch_source β test_collapse_urns
tests.unit.test_elasticsearch_source β test_elastic_search_schema_conversion[.ds-datahub_usage_event-000001]
tests.unit.test_elasticsearch_source β test_elastic_search_schema_conversion[chartindex_v2]
tests.unit.test_elasticsearch_source β test_elastic_search_schema_conversion[corpgroupindex_v2]
tests.unit.test_elasticsearch_source β test_elastic_search_schema_conversion[corpuserindex_v2]
tests.unit.test_elasticsearch_source β test_elastic_search_schema_conversion[dashboardindex_v2]
tests.unit.test_elasticsearch_source β test_elastic_search_schema_conversion[dataflowindex_v2]
tests.unit.test_elasticsearch_source β test_elastic_search_schema_conversion[datahubpolicyindex_v2]
tests.unit.test_elasticsearch_source β test_elastic_search_schema_conversion[datahubretentionindex_v2]
tests.unit.test_elasticsearch_source β test_elastic_search_schema_conversion[datajobindex_v2]
tests.unit.test_elasticsearch_source β test_elastic_search_schema_conversion[dataplatformindex_v2]
tests.unit.test_elasticsearch_source β test_elastic_search_schema_conversion[dataprocessindex_v2]
tests.unit.test_elasticsearch_source β test_elastic_search_schema_conversion[dataset_datasetprofileaspect_v1]
tests.unit.test_elasticsearch_source β test_elastic_search_schema_conversion[dataset_datasetusagestatisticsaspect_v1]
tests.unit.test_elasticsearch_source β test_elastic_search_schema_conversion[datasetindex_v2]
tests.unit.test_elasticsearch_source β test_elastic_search_schema_conversion[glossarynodeindex_v2]
tests.unit.test_elasticsearch_source β test_elastic_search_schema_conversion[glossarytermindex_v2]
tests.unit.test_elasticsearch_source β test_elastic_search_schema_conversion[ilm-history-2-000001]
tests.unit.test_elasticsearch_source β test_elastic_search_schema_conversion[mlfeatureindex_v2]
tests.unit.test_elasticsearch_source β test_elastic_search_schema_conversion[mlfeaturetableindex_v2]
tests.unit.test_elasticsearch_source β test_elastic_search_schema_conversion[mlmodeldeploymentindex_v2]
tests.unit.test_elasticsearch_source β test_elastic_search_schema_conversion[mlmodelgroupindex_v2]
tests.unit.test_elasticsearch_source β test_elastic_search_schema_conversion[mlmodelindex_v2]
tests.unit.test_elasticsearch_source β test_elastic_search_schema_conversion[mlprimarykeyindex_v2]
tests.unit.test_elasticsearch_source β test_elastic_search_schema_conversion[schemafieldindex_v2]
tests.unit.test_elasticsearch_source β test_elastic_search_schema_conversion[system_metadata_service_v1]
tests.unit.test_elasticsearch_source β test_elastic_search_schema_conversion[tagindex_v2]
tests.unit.test_elasticsearch_source β test_elasticsearch_throws_error_wrong_operation_config
tests.unit.test_elasticsearch_source β test_host_port_parsing
tests.unit.test_elasticsearch_source β test_no_properties_in_mappings_schema
tests.unit.test_file_lineage_source β test_basic_lineage_entity_root_node_urn
tests.unit.test_file_lineage_source β test_basic_lineage_finegrained_upstream_urns
tests.unit.test_file_lineage_source β test_basic_lineage_upstream_urns
tests.unit.test_file_lineage_source β test_unsupported_entity_env
tests.unit.test_file_lineage_source β test_unsupported_entity_type
tests.unit.test_file_lineage_source β test_unsupported_upstream_entity_type
tests.unit.test_gcs_source β test_data_lake_incorrect_config_raises_error
tests.unit.test_gcs_source β test_gcs_source_setup
tests.unit.test_ge_profiling_config β test_profile_table_level_only
tests.unit.test_ge_profiling_config β test_profile_table_level_only_fails_with_field_metric_enabled
tests.unit.test_generic_aspect_transformer.TestDummyGenericAspectTransformer β test_add_generic_aspect_when_mce_received
tests.unit.test_generic_aspect_transformer.TestDummyGenericAspectTransformer β test_add_generic_aspect_when_mcpc_received
tests.unit.test_generic_aspect_transformer.TestDummyGenericAspectTransformer β test_add_generic_aspect_when_mcpw_received
tests.unit.test_generic_aspect_transformer.TestDummyGenericAspectTransformer β test_modify_generic_aspect_when_mcpc_received
tests.unit.test_generic_aspect_transformer.TestDummyRemoveGenericAspectTransformer β test_remove_generic_aspect_when_mcpc_received
tests.unit.test_glue_source β test_column_type[array]
tests.unit.test_glue_source β test_column_type[char]
tests.unit.test_glue_source β test_column_type[map]
tests.unit.test_glue_source β test_column_type[struct]
tests.unit.test_glue_source β test_config_without_platform
tests.unit.test_glue_source β test_glue_ingest[None-glue_mces.json-glue_mces_golden.json]
tests.unit.test_glue_source β test_glue_ingest[some_instance_name-glue_mces_platform_instance.json-glue_mces_platform_instance_golden.json]
tests.unit.test_glue_source β test_glue_stateful
tests.unit.test_glue_source β test_ignore_resource_links[False-all_databases_and_tables_result1]
tests.unit.test_glue_source β test_ignore_resource_links[True-all_databases_and_tables_result0]
tests.unit.test_glue_source β test_platform_config
tests.unit.test_glue_source β test_platform_must_be_valid
tests.unit.test_great_expectations_action β test_DataHubValidationAction_basic
tests.unit.test_great_expectations_action β test_DataHubValidationAction_graceful_failure
tests.unit.test_great_expectations_action β test_DataHubValidationAction_not_supported
tests.unit.test_hana_source β test_hana_uri_native
tests.unit.test_hana_source β test_hana_uri_native_db
tests.unit.test_hana_source β test_platform_correctly_set_hana
tests.unit.test_hive_source β test_hive_configuration_get_avro_schema_from_native_data_type
tests.unit.test_hive_source β test_hive_configuration_get_identifier_with_database
tests.unit.test_iceberg β test_avro_decimal_bytes_nullable
tests.unit.test_iceberg β test_config_catalog_not_configured
tests.unit.test_iceberg β test_config_for_tests
tests.unit.test_iceberg β test_config_no_catalog
Check notice on line 0 in .github
github-actions / Unit Test Results (metadata ingestion)
1217 tests found (test 747 to 1217)
There are 1217 tests, see "Raw output" for the list of tests 747 to 1217.
Raw output
tests.unit.test_iceberg β test_iceberg_list_to_schema_field[iceberg_type0-bytes]
tests.unit.test_iceberg β test_iceberg_list_to_schema_field[iceberg_type1-boolean]
tests.unit.test_iceberg β test_iceberg_list_to_schema_field[iceberg_type10-timestamp-micros]
tests.unit.test_iceberg β test_iceberg_list_to_schema_field[iceberg_type11-timestamp-micros]
tests.unit.test_iceberg β test_iceberg_list_to_schema_field[iceberg_type12-time-micros]
tests.unit.test_iceberg β test_iceberg_list_to_schema_field[iceberg_type13-uuid]
tests.unit.test_iceberg β test_iceberg_list_to_schema_field[iceberg_type2-date]
tests.unit.test_iceberg β test_iceberg_list_to_schema_field[iceberg_type3-decimal]
tests.unit.test_iceberg β test_iceberg_list_to_schema_field[iceberg_type4-double]
tests.unit.test_iceberg β test_iceberg_list_to_schema_field[iceberg_type5-fixed]
tests.unit.test_iceberg β test_iceberg_list_to_schema_field[iceberg_type6-float]
tests.unit.test_iceberg β test_iceberg_list_to_schema_field[iceberg_type7-int]
tests.unit.test_iceberg β test_iceberg_list_to_schema_field[iceberg_type8-long]
tests.unit.test_iceberg β test_iceberg_list_to_schema_field[iceberg_type9-string]
tests.unit.test_iceberg β test_iceberg_map_to_schema_field[iceberg_type0-BytesTypeClass]
tests.unit.test_iceberg β test_iceberg_map_to_schema_field[iceberg_type1-BooleanTypeClass]
tests.unit.test_iceberg β test_iceberg_map_to_schema_field[iceberg_type10-TimeTypeClass]
tests.unit.test_iceberg β test_iceberg_map_to_schema_field[iceberg_type11-TimeTypeClass]
tests.unit.test_iceberg β test_iceberg_map_to_schema_field[iceberg_type12-TimeTypeClass]
tests.unit.test_iceberg β test_iceberg_map_to_schema_field[iceberg_type13-StringTypeClass]
tests.unit.test_iceberg β test_iceberg_map_to_schema_field[iceberg_type2-DateTypeClass]
tests.unit.test_iceberg β test_iceberg_map_to_schema_field[iceberg_type3-NumberTypeClass]
tests.unit.test_iceberg β test_iceberg_map_to_schema_field[iceberg_type4-NumberTypeClass]
tests.unit.test_iceberg β test_iceberg_map_to_schema_field[iceberg_type5-FixedTypeClass]
tests.unit.test_iceberg β test_iceberg_map_to_schema_field[iceberg_type6-NumberTypeClass]
tests.unit.test_iceberg β test_iceberg_map_to_schema_field[iceberg_type7-NumberTypeClass]
tests.unit.test_iceberg β test_iceberg_map_to_schema_field[iceberg_type8-NumberTypeClass]
tests.unit.test_iceberg β test_iceberg_map_to_schema_field[iceberg_type9-StringTypeClass]
tests.unit.test_iceberg β test_iceberg_primitive_type_to_schema_field[iceberg_type0-BytesTypeClass]
tests.unit.test_iceberg β test_iceberg_primitive_type_to_schema_field[iceberg_type1-BooleanTypeClass]
tests.unit.test_iceberg β test_iceberg_primitive_type_to_schema_field[iceberg_type10-TimeTypeClass]
tests.unit.test_iceberg β test_iceberg_primitive_type_to_schema_field[iceberg_type11-TimeTypeClass]
tests.unit.test_iceberg β test_iceberg_primitive_type_to_schema_field[iceberg_type12-TimeTypeClass]
tests.unit.test_iceberg β test_iceberg_primitive_type_to_schema_field[iceberg_type13-StringTypeClass]
tests.unit.test_iceberg β test_iceberg_primitive_type_to_schema_field[iceberg_type2-DateTypeClass]
tests.unit.test_iceberg β test_iceberg_primitive_type_to_schema_field[iceberg_type3-NumberTypeClass]
tests.unit.test_iceberg β test_iceberg_primitive_type_to_schema_field[iceberg_type4-NumberTypeClass]
tests.unit.test_iceberg β test_iceberg_primitive_type_to_schema_field[iceberg_type5-FixedTypeClass]
tests.unit.test_iceberg β test_iceberg_primitive_type_to_schema_field[iceberg_type6-NumberTypeClass]
tests.unit.test_iceberg β test_iceberg_primitive_type_to_schema_field[iceberg_type7-NumberTypeClass]
tests.unit.test_iceberg β test_iceberg_primitive_type_to_schema_field[iceberg_type8-NumberTypeClass]
tests.unit.test_iceberg β test_iceberg_primitive_type_to_schema_field[iceberg_type9-StringTypeClass]
tests.unit.test_iceberg β test_iceberg_profiler_value_render[value_type0-\x01\x02\x03\x04\x05-b'\\x01\\x02\\x03\\x04\\x05']
tests.unit.test_iceberg β test_iceberg_profiler_value_render[value_type1-True-True]
tests.unit.test_iceberg β test_iceberg_profiler_value_render[value_type10-1688559488157000-2023-07-05T12:18:08.157000]
tests.unit.test_iceberg β test_iceberg_profiler_value_render[value_type11-1688559488157000-2023-07-05T12:18:08.157000+00:00]
tests.unit.test_iceberg β test_iceberg_profiler_value_render[value_type12-40400000000-11:13:20]
tests.unit.test_iceberg β test_iceberg_profiler_value_render[value_type13-value13-00010203-0405-0607-0809-0a0b0c0d0e0f]
tests.unit.test_iceberg β test_iceberg_profiler_value_render[value_type2-19543-2023-07-05]
tests.unit.test_iceberg β test_iceberg_profiler_value_render[value_type3-value3-3.14]
tests.unit.test_iceberg β test_iceberg_profiler_value_render[value_type4-3.4-3.4]
tests.unit.test_iceberg β test_iceberg_profiler_value_render[value_type5-\x01\x02\x03\x04-b'\\x01\\x02\\x03\\x04']
tests.unit.test_iceberg β test_iceberg_profiler_value_render[value_type6-3.4-3.4]
tests.unit.test_iceberg β test_iceberg_profiler_value_render[value_type7-3-3]
tests.unit.test_iceberg β test_iceberg_profiler_value_render[value_type8-4294967295000-4294967295000]
tests.unit.test_iceberg β test_iceberg_profiler_value_render[value_type9-a string-a string]
tests.unit.test_iceberg β test_iceberg_struct_to_schema_field[iceberg_type0-BytesTypeClass]
tests.unit.test_iceberg β test_iceberg_struct_to_schema_field[iceberg_type1-BooleanTypeClass]
tests.unit.test_iceberg β test_iceberg_struct_to_schema_field[iceberg_type10-TimeTypeClass]
tests.unit.test_iceberg β test_iceberg_struct_to_schema_field[iceberg_type11-TimeTypeClass]
tests.unit.test_iceberg β test_iceberg_struct_to_schema_field[iceberg_type12-TimeTypeClass]
tests.unit.test_iceberg β test_iceberg_struct_to_schema_field[iceberg_type13-StringTypeClass]
tests.unit.test_iceberg β test_iceberg_struct_to_schema_field[iceberg_type2-DateTypeClass]
tests.unit.test_iceberg β test_iceberg_struct_to_schema_field[iceberg_type3-NumberTypeClass]
tests.unit.test_iceberg β test_iceberg_struct_to_schema_field[iceberg_type4-NumberTypeClass]
tests.unit.test_iceberg β test_iceberg_struct_to_schema_field[iceberg_type5-FixedTypeClass]
tests.unit.test_iceberg β test_iceberg_struct_to_schema_field[iceberg_type6-NumberTypeClass]
tests.unit.test_iceberg β test_iceberg_struct_to_schema_field[iceberg_type7-NumberTypeClass]
tests.unit.test_iceberg β test_iceberg_struct_to_schema_field[iceberg_type8-NumberTypeClass]
tests.unit.test_iceberg β test_iceberg_struct_to_schema_field[iceberg_type9-StringTypeClass]
tests.unit.test_kafka_emitter.KafkaEmitterTest β test_kafka_emitter_config
tests.unit.test_kafka_emitter.KafkaEmitterTest β test_kafka_emitter_config_old_and_new
tests.unit.test_kafka_emitter.KafkaEmitterTest β test_kafka_emitter_config_topic_upgrade
tests.unit.test_kafka_sink.KafkaSinkTest β test_kafka_callback_class
tests.unit.test_kafka_sink.KafkaSinkTest β test_kafka_sink_close
tests.unit.test_kafka_sink.KafkaSinkTest β test_kafka_sink_config
tests.unit.test_kafka_sink.KafkaSinkTest β test_kafka_sink_mcp
tests.unit.test_kafka_sink.KafkaSinkTest β test_kafka_sink_write
tests.unit.test_kafka_source β test_close
tests.unit.test_kafka_source β test_kafka_ignore_warnings_on_schema_type[ignore_warnings_on_schema_type-FALSE]
tests.unit.test_kafka_source β test_kafka_ignore_warnings_on_schema_type[ignore_warnings_on_schema_type-TRUE]
tests.unit.test_kafka_source β test_kafka_source_configuration
tests.unit.test_kafka_source β test_kafka_source_succeeds_with_admin_client_init_error
tests.unit.test_kafka_source β test_kafka_source_succeeds_with_describe_configs_error
tests.unit.test_kafka_source β test_kafka_source_topic_meta_mappings
tests.unit.test_kafka_source β test_kafka_source_workunits_no_platform_instance
tests.unit.test_kafka_source β test_kafka_source_workunits_schema_registry_subject_name_strategies
tests.unit.test_kafka_source β test_kafka_source_workunits_topic_pattern
tests.unit.test_kafka_source β test_kafka_source_workunits_wildcard_topic
tests.unit.test_kafka_source β test_kafka_source_workunits_with_platform_instance
tests.unit.test_key_value_pattern β test_basic_pattern
tests.unit.test_key_value_pattern β test_empty_pattern
tests.unit.test_key_value_pattern β test_fallthrough_pattern
tests.unit.test_key_value_pattern β test_fullmatch_mix_pattern
tests.unit.test_key_value_pattern β test_fullmatch_pattern
tests.unit.test_key_value_pattern β test_no_fallthrough_pattern
tests.unit.test_key_value_pattern β test_regex_pattern
tests.unit.test_ldap_source β test_parse_groups[input0-expected0]
tests.unit.test_ldap_source β test_parse_groups[input1-expected1]
tests.unit.test_ldap_source β test_parse_ldap_dn[cn=comma group (one\, two\, three),ou=Groups,dc=internal,dc=machines-comma group (one, two, three)]
tests.unit.test_ldap_source β test_parse_ldap_dn[cn=group_name,ou=Groups,dc=internal,dc=machines-group_name]
tests.unit.test_ldap_source β test_parse_ldap_dn[uid=firstname.surname,ou=People,dc=internal,dc=machines-firstname.surname]
tests.unit.test_ldap_source β test_parse_users[input0-expected0]
tests.unit.test_ldap_source β test_parse_users[input1-expected1]
tests.unit.test_ldap_state β test_add_checkpoint_urn
tests.unit.test_ldap_state β test_get_percent_entities_changed
tests.unit.test_ldap_state β test_get_urns_not_in
tests.unit.test_mapping β test_operation_processor_advanced_matching_owners
tests.unit.test_mapping β test_operation_processor_advanced_matching_tags
tests.unit.test_mapping β test_operation_processor_matching
tests.unit.test_mapping β test_operation_processor_matching_dot_props
tests.unit.test_mapping β test_operation_processor_matching_nested_props
tests.unit.test_mapping β test_operation_processor_no_email_strip_source_type_not_null
tests.unit.test_mapping β test_operation_processor_not_matching
tests.unit.test_mapping β test_operation_processor_ownership_category
tests.unit.test_mariadb_source β test_platform_correctly_set_mariadb
tests.unit.test_mariadb_source β test_platform_correctly_set_mysql
tests.unit.test_mce_builder β test_can_add_aspect
tests.unit.test_mce_builder β test_create_dataset_urn_with_reserved_chars
tests.unit.test_mcp_builder β test_guid_generator
tests.unit.test_mcp_builder β test_guid_generator_with_empty_instance
tests.unit.test_mcp_builder β test_guid_generator_with_env
tests.unit.test_mcp_builder β test_guid_generator_with_instance
tests.unit.test_mcp_builder β test_guid_generator_with_instance_and_env
tests.unit.test_mcp_builder β test_guid_generators
tests.unit.test_mcp_wrapper β test_mcpw_from_obj
tests.unit.test_mcp_wrapper β test_mcpw_inference
tests.unit.test_metabase_source β test_get_platform_instance
tests.unit.test_mlflow_source β test_config_model_name_separator
tests.unit.test_mlflow_source β test_make_external_link_local
tests.unit.test_mlflow_source β test_make_external_link_remote
tests.unit.test_mlflow_source β test_model_without_run
tests.unit.test_mlflow_source β test_stages
tests.unit.test_mlflow_source β test_traverse_mlflow_search_func
tests.unit.test_mlflow_source β test_traverse_mlflow_search_func_with_kwargs
tests.unit.test_nifi_source β test_auth_without_password[BASIC_AUTH]
tests.unit.test_nifi_source β test_auth_without_password[SINGLE_USER]
tests.unit.test_nifi_source β test_auth_without_username_and_password[BASIC_AUTH]
tests.unit.test_nifi_source β test_auth_without_username_and_password[SINGLE_USER]
tests.unit.test_nifi_source β test_client_cert_auth_failed
tests.unit.test_nifi_source β test_client_cert_auth_without_client_cert_file
tests.unit.test_nifi_source β test_failure_to_create_nifi_flow
tests.unit.test_nifi_source β test_incorrect_site_urls
tests.unit.test_nifi_source β test_kerberos_auth_failed_to_get_token
tests.unit.test_nifi_source β test_nifi_s3_provenance_event
tests.unit.test_nifi_source β test_single_user_auth_failed_to_get_token
tests.unit.test_nifi_source β test_site_url_no_context
tests.unit.test_nifi_source β test_site_url_with_context
tests.unit.test_notebook_urn.TestNotebookUrn β test_invalid_urn
tests.unit.test_notebook_urn.TestNotebookUrn β test_parse_urn
tests.unit.test_openapi.TestExplodeDict β test_d1
tests.unit.test_openapi.TestGetEndpoints β test_get_endpoints_openapi20
tests.unit.test_openapi.TestGetEndpoints β test_get_endpoints_openapi30
tests.unit.test_openapi.TestGuessing β test_mul_cids
tests.unit.test_openapi.TestGuessing β test_mul_ids
tests.unit.test_openapi.TestGuessing β test_name_id
tests.unit.test_openapi.TestGuessing β test_name_id2
tests.unit.test_openapi.TestGuessing β test_no_good_guesses
tests.unit.test_openapi.TestGuessing β test_no_k_f
tests.unit.test_openapi.TestGuessing β test_one_cid
tests.unit.test_openapi.TestGuessing β test_one_id
tests.unit.test_openapi.TestGuessing β test_only_id
tests.unit.test_oracle_source β test_oracle_config
tests.unit.test_packages β test_package_list_match_inits
tests.unit.test_packaging β test_datahub_version
tests.unit.test_parsing_util β test_get_missing_key
tests.unit.test_parsing_util β test_get_missing_key_any
tests.unit.test_pipeline.TestPipeline β test_configure
tests.unit.test_pipeline.TestPipeline β test_configure_with_file_sink_does_not_init_graph
tests.unit.test_pipeline.TestPipeline β test_configure_with_rest_sink_initializes_graph
tests.unit.test_pipeline.TestPipeline β test_configure_with_rest_sink_with_additional_props_initializes_graph
tests.unit.test_pipeline.TestPipeline β test_configure_without_sink
tests.unit.test_pipeline.TestPipeline β test_pipeline_process_commits[ALWAYS-no-warnings-no-errors]
tests.unit.test_pipeline.TestPipeline β test_pipeline_process_commits[ALWAYS-with-errors]
tests.unit.test_pipeline.TestPipeline β test_pipeline_process_commits[ALWAYS-with-warnings]
tests.unit.test_pipeline.TestPipeline β test_pipeline_process_commits[ON_NO_ERRORS-no-warnings-no-errors]
tests.unit.test_pipeline.TestPipeline β test_pipeline_process_commits[ON_NO_ERRORS-with-errors]
tests.unit.test_pipeline.TestPipeline β test_pipeline_process_commits[ON_NO_ERRORS-with-warnings]
tests.unit.test_pipeline.TestPipeline β test_pipeline_process_commits[ON_NO_ERRORS_AND_NO_WARNINGS-no-warnings-no-errors]
tests.unit.test_pipeline.TestPipeline β test_pipeline_process_commits[ON_NO_ERRORS_AND_NO_WARNINGS-with-errors]
tests.unit.test_pipeline.TestPipeline β test_pipeline_process_commits[ON_NO_ERRORS_AND_NO_WARNINGS-with-warnings]
tests.unit.test_pipeline.TestPipeline β test_pipeline_return_code[FakeSource-False-0]
tests.unit.test_pipeline.TestPipeline β test_pipeline_return_code[FakeSourceWithWarnings-False-0]
tests.unit.test_pipeline.TestPipeline β test_pipeline_return_code[FakeSourceWithWarnings-True-1]
tests.unit.test_pipeline.TestPipeline β test_run_including_fake_transformation
tests.unit.test_pipeline.TestPipeline β test_run_including_registered_transformation
tests.unit.test_plugin_system β test_list_all[False]
tests.unit.test_plugin_system β test_list_all[True]
tests.unit.test_plugin_system β test_registry
tests.unit.test_plugin_system β test_registry_defaults[registry0-expected0]
tests.unit.test_plugin_system β test_registry_defaults[registry1-expected1]
tests.unit.test_plugin_system β test_registry_defaults[registry2-expected2]
tests.unit.test_plugin_system β test_registry_defaults[registry3-expected3]
tests.unit.test_plugin_system β test_registry_defaults[registry4-expected4]
tests.unit.test_plugin_system β test_registry_defaults[registry5-expected5]
tests.unit.test_plugin_system β test_registry_defaults[registry6-expected6]
tests.unit.test_postgres_source β test_current_sqlalchemy_database_in_identifier
tests.unit.test_postgres_source β test_database_alias_takes_precendence
tests.unit.test_postgres_source β test_database_in_identifier
tests.unit.test_postgres_source β test_get_inspectors_multiple_databases
tests.unit.test_postgres_source β test_initial_database
tests.unit.test_postgres_source β tests_get_inspectors_with_database_provided
tests.unit.test_postgres_source β tests_get_inspectors_with_sqlalchemy_uri_provided
tests.unit.test_protobuf_util β test_protobuf_schema_to_mce_fields_map
tests.unit.test_protobuf_util β test_protobuf_schema_to_mce_fields_nestd_repeated
tests.unit.test_protobuf_util β test_protobuf_schema_to_mce_fields_nested
tests.unit.test_protobuf_util β test_protobuf_schema_to_mce_fields_repeated
tests.unit.test_protobuf_util β test_protobuf_schema_to_mce_fields_with_complex_schema
tests.unit.test_protobuf_util β test_protobuf_schema_to_mce_fields_with_single_empty_message
tests.unit.test_protobuf_util β test_protobuf_schema_to_mce_fields_with_single_message_single_field_key_schema
tests.unit.test_protobuf_util β test_protobuf_schema_to_mce_fields_with_two_messages_enum
tests.unit.test_protobuf_util β test_protobuf_schema_with_recursive_type
tests.unit.test_pulsar_source.TestPulsarSchema β test_pulsar_source_parse_pulsar_schema
tests.unit.test_pulsar_source.TestPulsarSource β test_pulsar_source_get_token_jwt
tests.unit.test_pulsar_source.TestPulsarSource β test_pulsar_source_get_token_oauth
tests.unit.test_pulsar_source.TestPulsarSource β test_pulsar_source_get_workunits_all_tenant
tests.unit.test_pulsar_source.TestPulsarSource β test_pulsar_source_get_workunits_custom_tenant
tests.unit.test_pulsar_source.TestPulsarSource β test_pulsar_source_get_workunits_patterns
tests.unit.test_pulsar_source.TestPulsarSourceConfig β test_pulsar_source_config_invalid_web_service_url_host
tests.unit.test_pulsar_source.TestPulsarSourceConfig β test_pulsar_source_config_invalid_web_service_url_scheme
tests.unit.test_pulsar_source.TestPulsarSourceConfig β test_pulsar_source_config_valid_web_service_url
tests.unit.test_pulsar_source.TestPulsarTopic β test_pulsar_source_parse_topic_string
tests.unit.test_pydantic_validators β test_field_deprecated
tests.unit.test_pydantic_validators β test_field_multiple_fields_rename
tests.unit.test_pydantic_validators β test_field_remove
tests.unit.test_pydantic_validators β test_field_rename
tests.unit.test_redash_source β test_get_chart_snapshot_parse_table_names_from_sql
tests.unit.test_redash_source β test_get_dashboard_snapshot_after_v10
tests.unit.test_redash_source β test_get_dashboard_snapshot_before_v10
tests.unit.test_redash_source β test_get_full_qualified_name
tests.unit.test_redash_source β test_get_known_viz_chart_snapshot
tests.unit.test_redash_source β test_get_unknown_viz_chart_snapshot
tests.unit.test_redshift_lineage β test_get_sources_from_query
tests.unit.test_redshift_lineage β test_get_sources_from_query_with_database
tests.unit.test_redshift_lineage β test_get_sources_from_query_with_four_part_table_should_throw_exception
tests.unit.test_redshift_lineage β test_get_sources_from_query_with_non_default_database
tests.unit.test_redshift_lineage β test_get_sources_from_query_with_only_table
tests.unit.test_redshift_lineage β test_get_sources_from_query_with_only_table_name
tests.unit.test_report β test_entity_filter_report
tests.unit.test_rest_emitter β test_datahub_rest_emitter_construction
tests.unit.test_rest_emitter β test_datahub_rest_emitter_extra_params
tests.unit.test_rest_emitter β test_datahub_rest_emitter_retry_construction
tests.unit.test_rest_emitter β test_datahub_rest_emitter_timeout_construction
tests.unit.test_rest_sink β test_datahub_rest_emitter[record0-/entities?action=ingest-snapshot0]
tests.unit.test_rest_sink β test_datahub_rest_emitter[record1-/entities?action=ingest-snapshot1]
tests.unit.test_rest_sink β test_datahub_rest_emitter[record2-/entities?action=ingest-snapshot2]
tests.unit.test_rest_sink β test_datahub_rest_emitter[record3-/usageStats?action=batchIngest-snapshot3]
tests.unit.test_rest_sink β test_datahub_rest_emitter[record4-/aspects?action=ingestProposal-snapshot4]
tests.unit.test_schema_util β test_avro_sample_payment_schema_to_mce_fields_with_nesting
tests.unit.test_schema_util β test_avro_schema_namespacing
tests.unit.test_schema_util β test_avro_schema_to_mce_fields_events_with_nullable_fields[optional_field_via_fixed]
tests.unit.test_schema_util β test_avro_schema_to_mce_fields_events_with_nullable_fields[optional_field_via_primitive]
tests.unit.test_schema_util β test_avro_schema_to_mce_fields_events_with_nullable_fields[optional_field_via_union_null_not_first]
tests.unit.test_schema_util β test_avro_schema_to_mce_fields_events_with_nullable_fields[optional_field_via_union_type]
tests.unit.test_schema_util β test_avro_schema_to_mce_fields_record_with_two_fields
tests.unit.test_schema_util β test_avro_schema_to_mce_fields_sample_events_with_different_field_types
tests.unit.test_schema_util β test_avro_schema_to_mce_fields_toplevel_isnt_a_record
tests.unit.test_schema_util β test_avro_schema_to_mce_fields_with_default
tests.unit.test_schema_util β test_avro_schema_to_mce_fields_with_field_meta_mapping
tests.unit.test_schema_util β test_avro_schema_to_mce_fields_with_nesting_across_records
tests.unit.test_schema_util β test_avro_schema_with_recursion
tests.unit.test_schema_util β test_ignore_exceptions
tests.unit.test_schema_util β test_key_schema_handling
tests.unit.test_schema_util β test_logical_types_bare
tests.unit.test_schema_util β test_logical_types_fully_specified_in_type
tests.unit.test_schema_util β test_map_of_union_of_int_and_record_of_union
tests.unit.test_schema_util β test_mce_avro_parses_okay
tests.unit.test_schema_util β test_needs_disambiguation_nested_union_of_records_with_same_field_name
tests.unit.test_schema_util β test_nested_arrays
tests.unit.test_schema_util β test_recursive_avro
tests.unit.test_schema_util β test_simple_nested_record_with_a_string_field_for_key_schema
tests.unit.test_schema_util β test_simple_record_with_primitive_types
tests.unit.test_schema_util β test_union_with_nested_record_of_union
tests.unit.test_snowflake_shares β test_same_database_inbound_and_outbound_invalid_config
tests.unit.test_snowflake_shares β test_snowflake_shares_workunit_inbound_and_outbound_share
tests.unit.test_snowflake_shares β test_snowflake_shares_workunit_inbound_and_outbound_share_no_platform_instance
tests.unit.test_snowflake_shares β test_snowflake_shares_workunit_inbound_share
tests.unit.test_snowflake_shares β test_snowflake_shares_workunit_no_shares
tests.unit.test_snowflake_shares β test_snowflake_shares_workunit_outbound_share
tests.unit.test_snowflake_source β test_account_id_is_added_when_host_port_is_present
tests.unit.test_snowflake_source β test_account_id_with_snowflake_host_suffix
tests.unit.test_snowflake_source β test_aws_cloud_region_from_snowflake_region_id
tests.unit.test_snowflake_source β test_azure_cloud_region_from_snowflake_region_id
tests.unit.test_snowflake_source β test_google_cloud_region_from_snowflake_region_id
tests.unit.test_snowflake_source β test_no_client_id_invalid_oauth_config
tests.unit.test_snowflake_source β test_options_contain_connect_args
tests.unit.test_snowflake_source β test_private_key_set_but_auth_not_changed
tests.unit.test_snowflake_source β test_snowflake_config_with_column_lineage_no_table_lineage_throws_error
tests.unit.test_snowflake_source β test_snowflake_config_with_connect_args_overrides_base_connect_args
tests.unit.test_snowflake_source β test_snowflake_config_with_no_connect_args_returns_base_connect_args
tests.unit.test_snowflake_source β test_snowflake_config_with_view_lineage_no_table_lineage_throws_error
tests.unit.test_snowflake_source β test_snowflake_oauth_happy_paths
tests.unit.test_snowflake_source β test_snowflake_oauth_okta_does_not_support_certificate
tests.unit.test_snowflake_source β test_snowflake_object_access_entry_missing_object_id
tests.unit.test_snowflake_source β test_snowflake_query_create_deny_regex_sql
tests.unit.test_snowflake_source β test_snowflake_source_throws_error_on_account_id_missing
tests.unit.test_snowflake_source β test_snowflake_temporary_patterns_config_rename
tests.unit.test_snowflake_source β test_snowflake_throws_error_on_client_secret_missing_if_use_certificate_is_false
tests.unit.test_snowflake_source β test_snowflake_throws_error_on_encoded_oauth_private_key_missing_if_use_certificate_is_true
tests.unit.test_snowflake_source β test_snowflake_uri_default_authentication
tests.unit.test_snowflake_source β test_snowflake_uri_external_browser_authentication
tests.unit.test_snowflake_source β test_snowflake_uri_key_pair_authentication
tests.unit.test_snowflake_source β test_test_connection_basic_success
tests.unit.test_snowflake_source β test_test_connection_capability_all_success
tests.unit.test_snowflake_source β test_test_connection_capability_schema_failure
tests.unit.test_snowflake_source β test_test_connection_capability_schema_success
tests.unit.test_snowflake_source β test_test_connection_failure
tests.unit.test_snowflake_source β test_test_connection_no_warehouse
tests.unit.test_snowflake_source β test_unknown_cloud_region_from_snowflake_region_id
tests.unit.test_source_helpers β test_auto_browse_path_v2_by_container_hierarchy
tests.unit.test_source_helpers β test_auto_browse_path_v2_container_over_legacy_browse_path
tests.unit.test_source_helpers β test_auto_browse_path_v2_dry_run
tests.unit.test_source_helpers β test_auto_browse_path_v2_ignores_urns_already_with
tests.unit.test_source_helpers β test_auto_browse_path_v2_invalid_batch_telemetry
tests.unit.test_source_helpers β test_auto_browse_path_v2_invalid_order_telemetry
tests.unit.test_source_helpers β test_auto_browse_path_v2_legacy_browse_path
tests.unit.test_source_helpers β test_auto_browse_path_v2_no_invalid_batch_telemetry_for_unrelated_aspects
tests.unit.test_source_helpers β test_auto_browse_path_v2_with_platform_instsance
tests.unit.test_source_helpers β test_auto_empty_dataset_usage_statistics
tests.unit.test_source_helpers β test_auto_empty_dataset_usage_statistics_invalid_timestamp
tests.unit.test_source_helpers β test_auto_status_aspect
tests.unit.test_source_helpers β test_auto_workunit
tests.unit.test_sql_common β test_generate_foreign_key
tests.unit.test_sql_common β test_get_platform_from_sqlalchemy_uri[awsathena://test_athena:3316/athenadb]
tests.unit.test_sql_common β test_get_platform_from_sqlalchemy_uri[bigquery://test_bq:3316/bigquery]
tests.unit.test_sql_common β test_get_platform_from_sqlalchemy_uri[clickhouse://test_clickhouse:3316/clickhousedb]
tests.unit.test_sql_common β test_get_platform_from_sqlalchemy_uri[druid://test_druid:1101/druiddb]
tests.unit.test_sql_common β test_get_platform_from_sqlalchemy_uri[hive://test_hive:1201/hive]
tests.unit.test_sql_common β test_get_platform_from_sqlalchemy_uri[jdbc:postgres://test_redshift:5432/redshift.amazonaws]
tests.unit.test_sql_common β test_get_platform_from_sqlalchemy_uri[mongodb://test_mongodb:1201/mongo]
tests.unit.test_sql_common β test_get_platform_from_sqlalchemy_uri[mssql://test_mssql:1201/mssqldb]
tests.unit.test_sql_common β test_get_platform_from_sqlalchemy_uri[mysql://test_mysql:1201/mysql]
tests.unit.test_sql_common β test_get_platform_from_sqlalchemy_uri[oracle://test_oracle:3306/oracledb]
tests.unit.test_sql_common β test_get_platform_from_sqlalchemy_uri[pinot://test_pinot:3306/pinot]
tests.unit.test_sql_common β test_get_platform_from_sqlalchemy_uri[postgresql://test_postgres:5432/postgres]
tests.unit.test_sql_common β test_get_platform_from_sqlalchemy_uri[postgresql://test_redshift:5432/redshift.amazonaws]
tests.unit.test_sql_common β test_get_platform_from_sqlalchemy_uri[presto://test_presto:5432/prestodb]
tests.unit.test_sql_common β test_get_platform_from_sqlalchemy_uri[redshift://test_redshift:5432/redshift]
tests.unit.test_sql_common β test_get_platform_from_sqlalchemy_uri[snowflake://test_snowflake:5432/snowflakedb]
tests.unit.test_sql_common β test_get_platform_from_sqlalchemy_uri[trino://test_trino:5432/trino]
tests.unit.test_sql_common β test_use_source_schema_for_foreign_key_if_not_specified
tests.unit.test_sql_utils β test_guid_generators
tests.unit.test_superset_source β test_default_values
tests.unit.test_superset_source β test_set_display_uri
tests.unit.test_tag_urn.TestTagUrn β test_invalid_urn
tests.unit.test_tag_urn.TestTagUrn β test_parse_urn
tests.unit.test_time_window_config β test_absolute_start_time
tests.unit.test_time_window_config β test_default_start_end_time
tests.unit.test_time_window_config β test_default_start_end_time_hour_bucket_duration
tests.unit.test_time_window_config β test_invalid_relative_start_time
tests.unit.test_time_window_config β test_relative_start_time
tests.unit.test_transform_dataset β test_add_dataset_browse_paths
tests.unit.test_transform_dataset β test_add_dataset_properties
tests.unit.test_transform_dataset β test_extract_dataset_tags
tests.unit.test_transform_dataset β test_extract_owners_from_tags
tests.unit.test_transform_dataset β test_import_resolver
tests.unit.test_transform_dataset β test_mark_status_dataset
tests.unit.test_transform_dataset β test_mcp_add_tags_existing
tests.unit.test_transform_dataset β test_mcp_add_tags_missing
tests.unit.test_transform_dataset β test_mcp_multiple_transformers
tests.unit.test_transform_dataset β test_mcp_multiple_transformers_replace
tests.unit.test_transform_dataset β test_ownership_patching_intersect
tests.unit.test_transform_dataset β test_ownership_patching_with_different_types_1
tests.unit.test_transform_dataset β test_ownership_patching_with_different_types_2
tests.unit.test_transform_dataset β test_ownership_patching_with_empty_mce_none_server
tests.unit.test_transform_dataset β test_ownership_patching_with_empty_mce_nonempty_server
tests.unit.test_transform_dataset β test_ownership_patching_with_nones
tests.unit.test_transform_dataset β test_pattern_add_dataset_domain_aspect_name
tests.unit.test_transform_dataset β test_pattern_add_dataset_domain_match
tests.unit.test_transform_dataset β test_pattern_add_dataset_domain_no_match
tests.unit.test_transform_dataset β test_pattern_add_dataset_domain_replace_existing_match
tests.unit.test_transform_dataset β test_pattern_add_dataset_domain_replace_existing_no_match
tests.unit.test_transform_dataset β test_pattern_add_dataset_domain_semantics_overwrite
tests.unit.test_transform_dataset β test_pattern_add_dataset_domain_semantics_patch
tests.unit.test_transform_dataset β test_pattern_dataset_ownership_transformation
tests.unit.test_transform_dataset β test_pattern_dataset_ownership_with_invalid_type_transformation
tests.unit.test_transform_dataset β test_pattern_dataset_ownership_with_type_transformation
tests.unit.test_transform_dataset β test_pattern_dataset_schema_tags_transformation
tests.unit.test_transform_dataset β test_pattern_dataset_schema_tags_transformation_overwrite
tests.unit.test_transform_dataset β test_pattern_dataset_schema_tags_transformation_patch
tests.unit.test_transform_dataset β test_pattern_dataset_schema_terms_transformation
tests.unit.test_transform_dataset β test_pattern_dataset_schema_terms_transformation_overwrite
tests.unit.test_transform_dataset β test_pattern_dataset_schema_terms_transformation_patch
tests.unit.test_transform_dataset β test_pattern_dataset_tags_transformation
tests.unit.test_transform_dataset β test_pattern_dataset_terms_transformation
tests.unit.test_transform_dataset β test_simple_add_dataset_domain
tests.unit.test_transform_dataset β test_simple_add_dataset_domain_aspect_name
tests.unit.test_transform_dataset β test_simple_add_dataset_domain_mce_support
tests.unit.test_transform_dataset β test_simple_add_dataset_domain_replace_existing
tests.unit.test_transform_dataset β test_simple_add_dataset_domain_semantics_overwrite
tests.unit.test_transform_dataset β test_simple_add_dataset_domain_semantics_patch
tests.unit.test_transform_dataset β test_simple_add_dataset_properties
tests.unit.test_transform_dataset β test_simple_add_dataset_properties_overwrite
tests.unit.test_transform_dataset β test_simple_add_dataset_properties_patch
tests.unit.test_transform_dataset β test_simple_add_dataset_properties_replace_existing
tests.unit.test_transform_dataset β test_simple_dataset_ownership_transformation
tests.unit.test_transform_dataset β test_simple_dataset_ownership_transformer_semantics_patch
tests.unit.test_transform_dataset β test_simple_dataset_ownership_with_invalid_type_transformation
tests.unit.test_transform_dataset β test_simple_dataset_ownership_with_type_transformation
tests.unit.test_transform_dataset β test_simple_dataset_tags_transformation
tests.unit.test_transform_dataset β test_simple_dataset_terms_transformation
tests.unit.test_transform_dataset β test_simple_remove_dataset_ownership
tests.unit.test_transform_dataset β test_supression_works
tests.unit.test_unity_catalog_config β test_profiling_requires_warehouses_id
tests.unit.test_unity_catalog_config β test_within_thirty_days
tests.unit.test_unity_catalog_config β test_workspace_url_should_start_with_https
tests.unit.test_urn.TestUrn β test_invalid_urn
tests.unit.test_urn.TestUrn β test_parse_urn
tests.unit.test_urn.TestUrn β test_url_encode_urn
tests.unit.test_usage_common β test_add_one_query_with_ignored_user
tests.unit.test_usage_common β test_add_one_query_without_columns
tests.unit.test_usage_common β test_convert_usage_aggregation_class
tests.unit.test_usage_common β test_make_usage_workunit
tests.unit.test_usage_common β test_make_usage_workunit_include_top_n_queries
tests.unit.test_usage_common β test_multiple_query_with_ignored_user
tests.unit.test_usage_common β test_multiple_query_without_columns
tests.unit.test_usage_common β test_query_formatting
tests.unit.test_usage_common β test_query_trimming
tests.unit.test_usage_common β test_top_n_queries_validator_fails
tests.unit.test_utilities β test_delayed_iter
tests.unit.test_utilities β test_sqllineage_sql_parser_get_columns_complex_query_with_union
tests.unit.test_utilities β test_sqllineage_sql_parser_get_columns_from_simple_query
tests.unit.test_utilities β test_sqllineage_sql_parser_get_columns_from_templated_query
tests.unit.test_utilities β test_sqllineage_sql_parser_get_columns_with_alias_and_count_star
tests.unit.test_utilities β test_sqllineage_sql_parser_get_columns_with_join
tests.unit.test_utilities β test_sqllineage_sql_parser_get_columns_with_more_complex_join
tests.unit.test_utilities β test_sqllineage_sql_parser_get_tables_from_complex_query
tests.unit.test_utilities β test_sqllineage_sql_parser_get_tables_from_simple_query
tests.unit.test_utilities β test_sqllineage_sql_parser_get_tables_from_templated_query
tests.unit.test_utilities β test_sqllineage_sql_parser_tables_from_redash_query
tests.unit.test_utilities β test_sqllineage_sql_parser_tables_with_special_names
tests.unit.test_utilities β test_sqllineage_sql_parser_with_weird_lookml_query
tests.unit.test_vertica_source β test_vertica_uri_https
tests.unit.test_workunit β test_get_aspects_of_type_mce
tests.unit.test_workunit β test_get_aspects_of_type_mcp
tests.unit.test_workunit β test_get_aspects_of_type_mcpc
tests.unit.utilities.test_file_backed_collections β test_custom_column[0]
tests.unit.utilities.test_file_backed_collections β test_custom_column[10]
tests.unit.utilities.test_file_backed_collections β test_custom_column[1]
tests.unit.utilities.test_file_backed_collections β test_custom_serde
tests.unit.utilities.test_file_backed_collections β test_file_cleanup
tests.unit.utilities.test_file_backed_collections β test_file_dict
tests.unit.utilities.test_file_backed_collections β test_file_dict_stores_counter
tests.unit.utilities.test_file_backed_collections β test_file_list
tests.unit.utilities.test_file_backed_collections β test_shared_connection
tests.unit.utilities.test_hive_schema_to_avro β test_get_avro_schema_for_hive_column
tests.unit.utilities.test_hive_schema_to_avro β test_get_avro_schema_for_struct_hive_column
tests.unit.utilities.test_hive_schema_to_avro β test_get_avro_schema_for_struct_hive_with_duplicate_column
tests.unit.utilities.test_hive_schema_to_avro β test_get_avro_schema_for_struct_hive_with_duplicate_column2
tests.unit.utilities.test_lossy_collections β test_lossydict_sampling[10-False-14]
tests.unit.utilities.test_lossy_collections β test_lossydict_sampling[100-True-1000]
tests.unit.utilities.test_lossy_collections β test_lossydict_sampling[4-False-4]
tests.unit.utilities.test_lossy_collections β test_lossylist_sampling[10-False]
tests.unit.utilities.test_lossy_collections β test_lossylist_sampling[100-True]
tests.unit.utilities.test_lossy_collections β test_lossyset_sampling[10-False]
tests.unit.utilities.test_lossy_collections β test_lossyset_sampling[100-True]
tests.unit.utilities.test_memory_footprint β test_total_size_with_defaultdict
tests.unit.utilities.test_memory_footprint β test_total_size_with_empty_dict
tests.unit.utilities.test_memory_footprint β test_total_size_with_list
tests.unit.utilities.test_memory_footprint β test_total_size_with_none
tests.unit.utilities.test_perf_timer β test_generator_with_paused_timer
tests.unit.utilities.test_perf_timer β test_perf_timer_paused_timer
tests.unit.utilities.test_perf_timer β test_perf_timer_simple
tests.unit.utilities.test_urn_encoder β test_encode_string_with_reserved_chars[test&database.test(schema.test*table]
tests.unit.utilities.test_urn_encoder β test_encode_string_with_reserved_chars[test-database,test-schema,test-table]
tests.unit.utilities.test_urn_encoder β test_encode_string_with_reserved_chars[test_database,(test$schema),test+table]
tests.unit.utilities.test_urn_encoder β test_encode_string_without_reserved_chars_no_change[test&database.%testschema.test*table]
tests.unit.utilities.test_urn_encoder β test_encode_string_without_reserved_chars_no_change[test-database.test-schema.test-table]
tests.unit.utilities.test_urn_encoder β test_encode_string_without_reserved_chars_no_change[test_database.test$schema.test+table]
tests.unit.utilities.test_yaml_sync_utils β test_indentation_inference
tests.unit.utilities.test_yaml_sync_utils β test_update_yaml_file