diff --git a/poetry.lock b/poetry.lock index e0a7a69..9126af3 100644 --- a/poetry.lock +++ b/poetry.lock @@ -3872,6 +3872,14 @@ category = "dev" optional = false python-versions = "*" +[[package]] +name = "types-pyyaml" +version = "6.0.7" +description = "Typing stubs for PyYAML" +category = "dev" +optional = false +python-versions = "*" + [[package]] name = "typing-extensions" version = "3.10.0.2" @@ -4073,7 +4081,7 @@ snowflake = ["dbt-snowflake"] [metadata] lock-version = "1.1" python-versions = ">=3.7.2, <3.10.0" -content-hash = "b43915e17fa6b06d98f50ef5c64276211067942931a27a7dab403d520ae80b69" +content-hash = "b1ed63fe74c3067796b2c10bad193851ca89188b053dd78d4e5651428fdead88" [metadata.files] agate = [ @@ -6043,6 +6051,10 @@ types-freezegun = [ {file = "types-freezegun-1.1.9.tar.gz", hash = "sha256:6f05108d468baecadf999873bd37e57b25ceb35d35d3f83e7a742f25d6fe8b0e"}, {file = "types_freezegun-1.1.9-py3-none-any.whl", hash = "sha256:fe1dd73372d96358dcb93e3aeb66d39f6ac63749e0724f13554cc145e2120efe"}, ] +types-pyyaml = [ + {file = "types-PyYAML-6.0.7.tar.gz", hash = "sha256:59480cf44595d836aaae050f35e3c39f197f3a833679ef3978d97aa9f2fb7def"}, + {file = "types_PyYAML-6.0.7-py3-none-any.whl", hash = "sha256:7b273a34f32af9910cf9405728c9d2ad3afc4be63e4048091a1a73d76681fe67"}, +] typing-extensions = [ {file = "typing_extensions-3.10.0.2-py2-none-any.whl", hash = "sha256:d8226d10bc02a29bcc81df19a26e56a9647f8b0a6d4a83924139f4a8b01f17b7"}, {file = "typing_extensions-3.10.0.2-py3-none-any.whl", hash = "sha256:f1d25edafde516b146ecd0613dabcc61409817af4766fbbcfb8d1ad4ec441a34"}, diff --git a/pyproject.toml b/pyproject.toml index d9ac48f..d07f80d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -223,6 +223,7 @@ pytest = "^6.2.4" pytest-cov = "^3.0.0" pytest-postgresql = "^3.1.1" types-freezegun = "^1.1.6" +types-PyYAML = "^6.0.7" [tool.poetry.group.docs] optional = true diff --git a/tests/hooks/dbt/test_dbt_clean.py b/tests/hooks/dbt/test_dbt_clean.py index dc3d6a4..7cf4c18 100644 --- a/tests/hooks/dbt/test_dbt_clean.py +++ b/tests/hooks/dbt/test_dbt_clean.py @@ -10,9 +10,6 @@ def test_dbt_clean_task( project_dir=dbt_project_file.parent, profiles_dir=profiles_file.parent, ) - print(f"{config = }\n {factory = }") - - print(f"{dbt_project_file = }") compile_dir = dbt_project_file.parent / "target" assert compile_dir.exists() is True