Skip to content

Commit

Permalink
Resolve unparsed.py conflict (#9311)
Browse files Browse the repository at this point in the history
* Update parser to support conversion metrics (#9173)

* added ConversionTypeParams classes

* updated parser for ConversionTypeParams

* added step to populate input_measure for conversion metrics

* version bump on DSI

* comment back manifest generating line

* updated v12 schemas

* added tests

* added changelog

* Remove `--dry-run` flag from `dbt deps` (#9169)

* Rm --dry-run flag for dbt deps

* Add changelog entry

* Update test

* PR feedback

* adding clean_up methods to basic and unique_id tests (#9195)

* init attempt of adding clean_up methods to basic and unique_id tests

* swapping cleanup method drop of test_schema to unique_schema to test breakage on docs_generate test

* moving the clean_up method down into class BaseDocsGenerate

* remove drop relation for unique_schema

* manually define alternate_schema for clean_up as not being seen as part of project_config

* add changelog

* remove unneeded changelog

* uncomment line that generates new manifest and delete manifest our changes created

* make sure the manifest test is deleted and readd older version of manifest.json to appease test

* manually revert file to previous commit

* Revert "manually revert file to previous commit"

This reverts commit a755419.

---------

Co-authored-by: William Deng <33618746+WilliamDee@users.noreply.github.com>
Co-authored-by: Jeremy Cohen <jeremy@dbtlabs.com>
Co-authored-by: Matthew McKnight <91097623+McKnight-42@users.noreply.github.com>
  • Loading branch information
4 people authored Dec 22, 2023
1 parent ff52aef commit ab0e4c4
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions core/dbt/contracts/graph/unparsed.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,13 @@
AdditionalPropertiesAllowed,
AdditionalPropertiesMixin,
)
from dbt.common.exceptions import DbtInternalError, CompilationError
from dbt.common.dataclass_schema import (
dbtClassMixin,
StrEnum,
ExtensibleDbtClassMixin,
ValidationError,
)
from dbt.node_types import NodeType
from dbt.contracts.graph.semantic_models import (
Defaults,
Expand All @@ -20,13 +27,6 @@
# trigger the PathEncoder
import dbt.common.helper_types # noqa:F401
from dbt.exceptions import ParsingError
from dbt.common.exceptions import DbtInternalError, CompilationError
from dbt.common.dataclass_schema import (
dbtClassMixin,
StrEnum,
ExtensibleDbtClassMixin,
ValidationError,
)

from dbt_semantic_interfaces.type_enums import ConversionCalculationType

Expand Down

0 comments on commit ab0e4c4

Please sign in to comment.