-
Notifications
You must be signed in to change notification settings - Fork 20
Expand file tree
/
Copy pathpyproject.toml
More file actions
executable file
·94 lines (83 loc) · 1.98 KB
/
pyproject.toml
File metadata and controls
executable file
·94 lines (83 loc) · 1.98 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
[project]
name = "pytest-jira-xray"
description = "pytest plugin to integrate tests with JIRA XRAY"
readme = "README.rst"
requires-python = ">=3.9"
license = "Apache-2.0"
authors = [{ name = "Lukasz Fundakowski", email = "fundakol@yahoo.com" }]
keywords = ["pytest, JIRA, XRAY"]
classifiers = [
"Development Status :: 4 - Beta",
"Framework :: Pytest",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14"
]
dependencies = ["pytest>=6.2.4", "requests>=2.27.0"]
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/fundakol/pytest-jira-xray"
[project.entry-points.pytest11]
xray = "pytest_xray.plugin"
[dependency-groups]
dev = [
"pre-commit>=4.3.0",
"tox>=4.30.3",
{ include-group = "lint" },
{ include-group = "test" },
]
lint = [
"mypy>=1.18.2",
"ruff>=0.14.3",
"types-requests>=2.32.4.20250913",
]
test = [
"coverage>=7.10.0",
"pytest-httpserver>=1.1.3",
"pytest-xdist>=3.8.0",
]
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 120
skip-string-normalization = true
target-version = ["py39"]
[tool.isort]
profile = "black"
src_paths = ["src", "tests"]
filter_files = true
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
use_parentheses = true
line_length = 88
[tool.mypy]
files = ["src", "tests"]
[tool.ruff]
target-version = "py39"
line-length = 120
src = [
"src",
"tests",
]
[tool.ruff.lint]
select = [
"E", # pycodestyle
"F", # Pyflakes
"UP", # pyupgrade
"B", # flake8-bugbear
"SIM", # flake8-simplify
"I", # isort
]
ignore = [
"SIM108", # if-else-block-instead-of-if-exp
]
[tool.ruff.format]
quote-style = "single"
[tool.setuptools_scm]