-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
89 lines (77 loc) · 2.17 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
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "pytest-ignore-test-results"
authors = [{name = "Fu Hanxi", email = "[email protected]"}]
readme = "README.md"
license = {file = "LICENSE"}
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Framework :: Pytest",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"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",
]
dynamic = ["version", "description"]
requires-python = ">=3.7"
dependencies = [
"pytest>=7.0",
]
[project.optional-dependencies]
test = [
"pytest-cov",
]
doc = [
"sphinx",
# theme
"sphinx-rtd-theme",
# extensions
"sphinx_copybutton", # copy button
"myst-parser", # markdown support
"sphinxcontrib-mermaid", # mermaid graph support
]
[project.urls]
Homepage = "https://github.com/espressif/pytest-ignore-test-results"
Repository = "https://github.com/espressif/pytest-ignore-test-results.git"
Changelog = "https://github.com/espressif/pytest-ignore-test-results/blob/main/CHANGELOG.md"
[project.entry-points."pytest11"]
pytest_ignore_test_results = "pytest_ignore_test_results.plugin"
[tool.commitizen]
name = "cz_conventional_commits"
version = "0.3.0"
tag_format = "v$version"
version_files = [
"pytest_ignore_test_results/__init__.py",
]
[tool.isort]
profile = 'black'
force_grid_wrap = 1
[tool.ruff]
line-length = 120
target-version = "py37"
[tool.ruff.lint]
select = [
'F', # Pyflakes
'E', # pycodestyle
'W', # pycodestyle
'I', # isort
'UP', # pyupgrade
'YTT', # flake8-2020
'A', # flake8-builtins
'ARG', # flake8-unused-arguments
'RUF', # ruff
]
[tool.ruff.lint.flake8-unused-arguments]
ignore-variadic-names = true
[tool.ruff.format]
quote-style = "single"
docstring-code-format = true
[tool.pytest.ini_options]
addopts = "-s"