-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
38 lines (34 loc) · 967 Bytes
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
[tool.poetry]
name = "dbt-data-quality-demo"
version = "0.0.0"
description = "Demo: Data Quality Management with dbt"
authors = ["Infinite Lambda <[email protected]>"]
readme = "README.md"
license = "Apache-2.0"
repository = "https://github.com/infinitelambda/dbt-data-quality-demo"
homepage = "https://infinitelambda.com"
[tool.poetry.dependencies]
python = ">=3.9,<3.13"
dbt-snowflake = "^1.7.0"
[tool.poetry.dev-dependencies]
poethepoet = "^0.16.4"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poe.tasks]
dbt-verify = [
{cmd = "dbt deps"},
{cmd = "dbt debug"},
]
dbt-build = [
{cmd = "dbt build --vars '{dq_tools_enable_store_test_results: true}'"},
]
deploy-dqs = [
{cmd = "dbt run-operation sis_deploy__app__data_quality_score"},
]
deploy-dtc = [
{cmd = "dbt run-operation sis_deploy__app__test_coverage"},
]
deploy-dti = [
{cmd = "dbt run-operation sis_deploy__app__today_issues"},
]