forked from deepset-ai/haystack
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
44 lines (38 loc) · 1.23 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
[build-system]
requires = [
"setuptools",
"wheel",
]
build-backend = "setuptools.build_meta"
[tool.black]
line-length = 120
[tool.pylint.'MESSAGES CONTROL']
max-line-length=120
disable = [
"missing-docstring",
"unused-argument",
"no-member",
"line-too-long",
"fixme",
"protected-access",
"too-few-public-methods",
"raise-missing-from"
]
[tool.pylint.'DESIGN']
max-args=7
[tool.pylint.'SIMILARITIES']
min-similarity-lines=6
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "--strict-markers"
markers = [
"slow: marks tests as slow (deselect with '-m \"not slow\"')",
"tika: marks tests which require tika container (deselect with '-m \"not tika\"')",
"elasticsearch: marks tests which require elasticsearch container (deselect with '-m \"not elasticsearch\"')",
"graphdb: marks tests which require graphdb container (deselect with '-m \"not graphdb\"')",
"generator: marks generator tests (deselect with '-m \"not generator\"')",
"pipeline: marks tests with pipeline",
"summarizer: marks summarizer tests",
"weaviate: marks tests that require weaviate container",
"embedding_dim: marks usage of document store with non-default embedding dimension (e.g @pytest.mark.embedding_dim(128))",
]