-
Notifications
You must be signed in to change notification settings - Fork 67
/
pyproject.toml
44 lines (36 loc) · 1.12 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
[tool.semantic_release]
assets = []
commit_message = "{version}\n\n[skip ci]\nAutomatically generated by python-semantic-release"
commit_parser = "angular"
logging_use_named_masks = false
major_on_zero = true
tag_format = "v{version}"
version_variables = [
"version.py:version",
]
[tool.semantic_release.branches.main]
match = "(main|master)"
prerelease_token = "rc"
prerelease = false
[tool.semantic_release.commit_author]
env = "GIT_COMMIT_AUTHOR"
default = "semantic-release <semantic-release>"
[tool.semantic_release.commit_parser_options]
allowed_tags = ["build", "chore", "ci", "docs", "feat", "fix", "perf", "style", "refactor", "test"]
minor_tags = ["feat"]
patch_tags = ["fix", "perf"]
[tool.semantic_release.remote]
name = "origin"
type = "github"
ignore_token_for_push = false
[tool.semantic_release.remote.token]
env = "GH_TOKEN"
[tool.black]
line-length = 119
fast = true
experimental-string-processing = true
target-version = ['py38','py39','py310','py311']
include = '\.pyi?$'
[tool.pytest.ini_options]
DJANGO_SETTINGS_MODULE = "apps.common.settings.test"
python_files = ["test_*.py", "*_test.py", "testing/python/*.py"]