-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
39 lines (34 loc) · 852 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
39
[tool.poetry]
name = "checkstatusgovbr"
version = "0.1.0"
description = "ETL Pipeline of project Checkstatus .gov.br"
authors = ["Gilson Filho <[email protected]>"]
[tool.isort]
profile = "black"
src_paths = ["src", "tests"]
combine_as_imports = true
[tool.black]
line-length = 120
target-version = ['py310']
[tool.pytest.ini_options]
testpaths = ["api", "pipeline"]
rootdir = "./"
addopts = [
"--strict-markers",
"--tb=short",
"--cov=.",
"--cov-branch",
"--cov-report=term-missing",
"--cov-report=html",
"--cov-report=xml",
"--no-cov-on-fail",
"--cov-fail-under=90",
]
[tool.mypy]
disallow_untyped_defs = true
ignore_missing_imports = true
plugins = ["sqlalchemy.ext.mypy.plugin"]
exclude = ["^tests/$", "^migrations/$"]
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"