-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
58 lines (51 loc) · 1.09 KB
/
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
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
[tool.poetry]
name = "pytest-dbt-postgres"
version = "0.2.0"
description = "Pytest tooling to unittest DBT & Postgres models"
authors = ["albert.franzi"]
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.10"
pytest = "^8.3.2"
pytest-env = "^1.1.3"
pytest-postgresql = "^6.0.1"
dbt-core = "^1.8.4"
dbt-postgres = "^1.8.2"
numpy = "^2.1.0"
pandas = "^2.2.2"
absl-py = "^2.1.0"
pydantic = "^2.7.3"
psycopg2-binary = "^2.9.9"
[tool.poetry.group.dev.dependencies]
mypy = "^1.11.2"
pytest-cov = "^5.0.0"
tox = "^4.18.0"
pre-commit = "^3.8.0"
ruff = "^0.6.2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["E4", "E7", "E9", "F", "I"]
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "-p no:warnings"
testpaths = ["tests"]
[[tool.mypy.overrides]]
module = [
"absl.*",
"dbt.*",
"glom.*",
"pandas.*",
"psycopg2.*",
"psycopg.*",
"pydantic.*",
"pydantic_settings.*",
"pytest_postgresql.*",
"pytest.*",
"numpy.*",
"_pytest.*",
]
ignore_missing_imports = true