forked from chasleslr/dbt-junitxml
-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
59 lines (49 loc) · 1.25 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
59
[tool.poetry]
name = "dbt-junitxml"
version = "0.2.3"
description = "Utility to convert DBT test results into Junit XML format"
authors = ["Charles Lariviere <[email protected]>", "Siarhei Nekhviadovich <[email protected]>", "Aliaksandra Sidarenka <[email protected]>"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/chasleslr/dbt-junitxml"
packages = [
{ include = "dbt_junitxml", from = "src" },
]
[tool.poetry.dependencies]
python = ">=3.8"
junit-xml = ">=1.9"
click = ">=8.1"
[tool.poetry.dev-dependencies]
pytest = ">=8.0"
coverage = ">=7.0"
click = ">=8.1"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3.3"
coverage = "^7.6.1"
click = ">=8.1"
[build-system]
requires = ["poetry-core>=1.0.0,<2.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry.scripts]
dbt-junitxml = 'dbt_junitxml.main:cli'
[tool.pytest.ini_options]
minversion = "7.0"
addopts = "--verbose"
testpaths = [
"tests",
]
[project.optional-dependencies]
tests = [
"pytest~=8.2.2",
"pytest-cov==5.0.0",
"pytest-mock==3.14.0",
"junit-xml>=1.9",
"click>=8.1",
"coverage",
"poetry"
]
[tool.coverage.run]
command_line = "-m pytest"
[tool.coverage.report]
include = ["src/dbt_junitxml/*.py"]
show_missing = true