-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
102 lines (87 loc) · 2.03 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
90
91
92
93
94
95
96
97
98
99
100
101
102
[build-system]
requires = ["setuptools", "commitizen"]
build-backend = "setuptools.build_meta"
[project]
name = "pytest-pyvenv"
version = "0.2.4"
dynamic = [
"dependencies",
]
description = "A package for create venv in tests"
readme = "README.md"
authors = [
{name = "Mohammad Sina Allahkaram", email = "msinamsina@gmail.com"},
]
classifiers = [
"Framework :: Pytest",
]
[project.urls]
"Homepage" = "https://github.com/msinamsina/pytest-pyvenv"
"Bug Tracker" = "https://github.com/msinamsina/pytest-pyvenv/issues"
"Change Log" = "https://github.com/msinamsina/pytest-pyvenv/blob/main/CHANGELOG.md"
[project.entry-points.pytest11]
pyvenv = "pytest_pyvenv.__init__"
[project.optional-dependencies]
lint = [
"flake8",
"flake8-bugbear",
"flake8-pyproject"
]
docs = [
"sphinx",
"sphinx_rtd_theme",
"recommonmark",
"tomlkit"
]
test = [
"pytest",
"pytest-mock",
"pytest-cookies",
"pytest-xdist",
"tox",
"coverage"
]
cli = [
"click"
]
all = [
"pytest-pyvenv[lint,doc,test,cli]"
]
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
[tool.commitizen]
name = "cz_conventional_commits"
tag_format = "$version"
version_scheme = "semver"
version = "0.2.4"
update_changelog_on_bump = true
major_version_zero = true
version_files = [
"pyproject.toml:version",
"docs/conf.py:release"
]
[tool.coverage.run]
branch = true
source = ["src/pytest_pyvenv"]
omit = [
"docs/*",
"tests/*",
]
[tool.coverage.report]
# Regexes for lines to exclude from consideration
exclude_also = [
# Don't complain about missing debug-only code:
"def __repr__",
"if self\\.debug",
# Don't complain if tests don't hit defensive assertion code:
"raise AssertionError",
"raise NotImplementedError",
# Don't complain if non-runnable code isn't run:
"if 0:",
"if __name__ == .__main__.:",
# Don't complain about abstract methods, they aren't run:
"@(abc\\.)?abstractmethod",
]
ignore_errors = true
[tool.coverage.html]
directory = "coverage_html_report"