-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpyproject.toml
More file actions
47 lines (41 loc) · 1013 Bytes
/
pyproject.toml
File metadata and controls
47 lines (41 loc) · 1013 Bytes
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
[tool.pytest.ini_options]
testpaths = ["tests/server/"]
python_classes = []
asyncio_mode = "auto"
markers = [
"online: test has online dependencies",
]
[tool.black]
line-length = 119
target-version = ['py39']
extend-exclude = '''
^/(
env/
| tests/server/data/user_scripts/
| tests/azmlinfsrv/resources/
)
'''
[tool.towncrier]
package = "azureml_inference_server_http"
package_dir = ""
filename = "CHANGELOG.rst"
directory = "changes/"
title_format = "{version} ({project_date})"
template = "changes/_template.rst"
underlines = ["~", "-", "^"]
[[tool.towncrier.type]]
directory = "breaking"
name = "Breaking Changes"
showcontent = true
[[tool.towncrier.type]]
directory = "feature"
name = "Features"
showcontent = true
[[tool.towncrier.type]]
directory = "enhancement"
name = "Enhancements"
showcontent = true
[[tool.towncrier.type]]
directory = "fix"
name = "Fixes"
showcontent = true