.bumpversion.cfg
.cookiecutterrc
.coveragerc
.editorconfig
.pre-commit-config.yaml
.pre-commit-hooks.yaml
.readthedocs.yml
AUTHORS.rst
CHANGELOG.rst
CONTRIBUTING.rst
LICENSE
MANIFEST.in
README.md
README.rst
pyproject.toml
pytest.ini
setup.py
tox.ini
.github/workflows/github-actions.yml
ci/bootstrap.py
ci/requirements.txt
ci/templates/.github/workflows/github-actions.yml
docs/authors.rst
docs/changelog.rst
docs/conf.py
docs/configuration.rst
docs/contributing.rst
docs/features.rst
docs/hooks.rst
docs/index.rst
docs/insights.rst
docs/installation.rst
docs/introduction.rst
docs/performance.rst
docs/readme.rst
docs/requirements.txt
docs/spelling_wordlist.txt
docs/usage.rst
docs/reference/datapilot.rst
docs/reference/index.rst
src/altimate_datapilot.egg-info/PKG-INFO
src/altimate_datapilot.egg-info/SOURCES.txt
src/altimate_datapilot.egg-info/dependency_links.txt
src/altimate_datapilot.egg-info/entry_points.txt
src/altimate_datapilot.egg-info/not-zip-safe
src/altimate_datapilot.egg-info/requires.txt
src/altimate_datapilot.egg-info/top_level.txt
src/datapilot/__init__.py
src/datapilot/__main__.py
src/datapilot/cli/__init__.py
src/datapilot/cli/main.py
src/datapilot/clients/__init__.py
src/datapilot/clients/altimate/__init__.py
src/datapilot/clients/altimate/client.py
src/datapilot/clients/altimate/utils.py
src/datapilot/config/__init__.py
src/datapilot/config/config.py
src/datapilot/config/utils.py
src/datapilot/core/__init__.py
src/datapilot/core/insights/__init__.py
src/datapilot/core/insights/report.py
src/datapilot/core/insights/schema.py
src/datapilot/core/insights/utils.py
src/datapilot/core/insights/base/__init__.py
src/datapilot/core/insights/base/insight.py
src/datapilot/core/insights/sql/__init__.py
src/datapilot/core/insights/sql/base/__init__.py
src/datapilot/core/insights/sql/base/insight.py
src/datapilot/core/insights/sql/runtime/__init__.py
src/datapilot/core/insights/sql/static/__init__.py
src/datapilot/core/platforms/__init__.py
src/datapilot/core/platforms/dbt/__init__.py
src/datapilot/core/platforms/dbt/constants.py
src/datapilot/core/platforms/dbt/exceptions.py
src/datapilot/core/platforms/dbt/executor.py
src/datapilot/core/platforms/dbt/factory.py
src/datapilot/core/platforms/dbt/formatting.py
src/datapilot/core/platforms/dbt/utils.py
src/datapilot/core/platforms/dbt/cli/__init__.py
src/datapilot/core/platforms/dbt/cli/cli.py
src/datapilot/core/platforms/dbt/hooks/__init__.py
src/datapilot/core/platforms/dbt/hooks/executor_hook.py
src/datapilot/core/platforms/dbt/insights/__init__.py
src/datapilot/core/platforms/dbt/insights/base.py
src/datapilot/core/platforms/dbt/insights/schema.py
src/datapilot/core/platforms/dbt/insights/utils.py
src/datapilot/core/platforms/dbt/insights/checks/__init__.py
src/datapilot/core/platforms/dbt/insights/checks/base.py
src/datapilot/core/platforms/dbt/insights/checks/check_column_desc_are_same.py
src/datapilot/core/platforms/dbt/insights/checks/check_column_name_contract.py
src/datapilot/core/platforms/dbt/insights/checks/check_macro_args_have_desc.py
src/datapilot/core/platforms/dbt/insights/checks/check_macro_has_desc.py
src/datapilot/core/platforms/dbt/insights/checks/check_model_has_all_columns.py
src/datapilot/core/platforms/dbt/insights/checks/check_model_has_labels_keys.py
src/datapilot/core/platforms/dbt/insights/checks/check_model_has_meta_keys.py
src/datapilot/core/platforms/dbt/insights/checks/check_model_has_properties_file.py
src/datapilot/core/platforms/dbt/insights/checks/check_model_has_tests_by_group.py
src/datapilot/core/platforms/dbt/insights/checks/check_model_has_tests_by_name.py
src/datapilot/core/platforms/dbt/insights/checks/check_model_has_tests_by_type.py
src/datapilot/core/platforms/dbt/insights/checks/check_model_materialization_by_childs.py
src/datapilot/core/platforms/dbt/insights/checks/check_model_name_contract.py
src/datapilot/core/platforms/dbt/insights/checks/check_model_parents_and_childs.py
src/datapilot/core/platforms/dbt/insights/checks/check_model_parents_database.py
src/datapilot/core/platforms/dbt/insights/checks/check_model_parents_schema.py
src/datapilot/core/platforms/dbt/insights/checks/check_model_tags.py
src/datapilot/core/platforms/dbt/insights/checks/check_source_childs.py
src/datapilot/core/platforms/dbt/insights/checks/check_source_columns_have_desc.py
src/datapilot/core/platforms/dbt/insights/checks/check_source_has_all_columns.py
src/datapilot/core/platforms/dbt/insights/checks/check_source_has_freshness.py
src/datapilot/core/platforms/dbt/insights/checks/check_source_has_labels_keys.py
src/datapilot/core/platforms/dbt/insights/checks/check_source_has_loader.py
src/datapilot/core/platforms/dbt/insights/checks/check_source_has_meta_keys.py
src/datapilot/core/platforms/dbt/insights/checks/check_source_has_tests.py
src/datapilot/core/platforms/dbt/insights/checks/check_source_has_tests_by_group.py
src/datapilot/core/platforms/dbt/insights/checks/check_source_has_tests_by_name.py
src/datapilot/core/platforms/dbt/insights/checks/check_source_has_tests_by_type.py
src/datapilot/core/platforms/dbt/insights/checks/check_source_table_has_description.py
src/datapilot/core/platforms/dbt/insights/checks/check_source_tags.py
src/datapilot/core/platforms/dbt/insights/dbt_test/__init__.py
src/datapilot/core/platforms/dbt/insights/dbt_test/base.py
src/datapilot/core/platforms/dbt/insights/dbt_test/missing_primary_key_tests.py
src/datapilot/core/platforms/dbt/insights/dbt_test/test_coverage.py
src/datapilot/core/platforms/dbt/insights/governance/__init__.py
src/datapilot/core/platforms/dbt/insights/governance/base.py
src/datapilot/core/platforms/dbt/insights/governance/documentation_on_stale_columns.py
src/datapilot/core/platforms/dbt/insights/governance/exposures_dependent_on_private_models.py
src/datapilot/core/platforms/dbt/insights/governance/public_models_without_contracts.py
src/datapilot/core/platforms/dbt/insights/governance/undocumented_columns.py
src/datapilot/core/platforms/dbt/insights/governance/undocumented_public_models.py
src/datapilot/core/platforms/dbt/insights/modelling/README.md
src/datapilot/core/platforms/dbt/insights/modelling/__init__.py
src/datapilot/core/platforms/dbt/insights/modelling/base.py
src/datapilot/core/platforms/dbt/insights/modelling/direct_join_to_source.py
src/datapilot/core/platforms/dbt/insights/modelling/downstream_models_dependent_on_source.py
src/datapilot/core/platforms/dbt/insights/modelling/duplicate_sources.py
src/datapilot/core/platforms/dbt/insights/modelling/hard_coded_references.py
src/datapilot/core/platforms/dbt/insights/modelling/joining_of_upstream_concepts.py
src/datapilot/core/platforms/dbt/insights/modelling/model_fanout.py
src/datapilot/core/platforms/dbt/insights/modelling/multiple_sources_joined.py
src/datapilot/core/platforms/dbt/insights/modelling/root_model.py
src/datapilot/core/platforms/dbt/insights/modelling/source_fanout.py
src/datapilot/core/platforms/dbt/insights/modelling/staging_model_dependent_on_downstream_models.py
src/datapilot/core/platforms/dbt/insights/modelling/staging_model_dependent_on_staging_models.py
src/datapilot/core/platforms/dbt/insights/modelling/unused_sources.py
src/datapilot/core/platforms/dbt/insights/performance/__init__.py
src/datapilot/core/platforms/dbt/insights/performance/base.py
src/datapilot/core/platforms/dbt/insights/performance/chain_view_linking.py
src/datapilot/core/platforms/dbt/insights/performance/exposure_parent_materializations.py
src/datapilot/core/platforms/dbt/insights/structure/__init__.py
src/datapilot/core/platforms/dbt/insights/structure/base.py
src/datapilot/core/platforms/dbt/insights/structure/model_directories_structure.py
src/datapilot/core/platforms/dbt/insights/structure/model_naming_conventions.py
src/datapilot/core/platforms/dbt/insights/structure/source_directories_structure.py
src/datapilot/core/platforms/dbt/insights/structure/test_directory_structure.py
src/datapilot/core/platforms/dbt/schemas/__init__.py
src/datapilot/core/platforms/dbt/schemas/catalog.py
src/datapilot/core/platforms/dbt/schemas/manifest.py
src/datapilot/core/platforms/dbt/wrappers/__init__.py
src/datapilot/core/platforms/dbt/wrappers/catalog/__init__.py
src/datapilot/core/platforms/dbt/wrappers/catalog/wrapper.py
src/datapilot/core/platforms/dbt/wrappers/catalog/v1/__init__.py
src/datapilot/core/platforms/dbt/wrappers/catalog/v1/wrapper.py
src/datapilot/core/platforms/dbt/wrappers/manifest/__init__.py
src/datapilot/core/platforms/dbt/wrappers/manifest/wrapper.py
src/datapilot/core/platforms/dbt/wrappers/manifest/v11/__init__.py
src/datapilot/core/platforms/dbt/wrappers/manifest/v11/schemas.py
src/datapilot/core/platforms/dbt/wrappers/manifest/v11/wrapper.py
src/datapilot/core/platforms/dbt/wrappers/run_results/__init__.py
src/datapilot/core/platforms/dbt/wrappers/run_results/run_results.py
src/datapilot/exceptions/__init__.py
src/datapilot/exceptions/exceptions.py
src/datapilot/schemas/__init__.py
src/datapilot/schemas/constants.py
src/datapilot/schemas/nodes.py
src/datapilot/schemas/sql.py
src/datapilot/utils/__init__.py
src/datapilot/utils/utils.py
src/datapilot/utils/formatting/__init__.py
src/datapilot/utils/formatting/utils.py
tests/core/__init__.py
tests/core/platform/__init__.py
tests/core/platform/dbt/__init__.py
tests/core/platform/dbt/test_cli.py
tests/core/platform/dbt/test_utils.py
tests/data/catalog_v1.json
tests/data/config.yml
tests/data/manifest_v11.json
tests/data/manifests/manifest_js.json
tests/data/manifests/manifest_js2.json
tests/data/manifests/manifest_js3.json
tests/data/manifests/manifest_tuva.json
tests/data/manifests/manifest_tuva2.json
tests/data/manifests/manifest_tuva3.json
tests/utils/__init__.py
tests/utils/test_utils.py