-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathpyproject.toml
More file actions
45 lines (42 loc) · 867 Bytes
/
pyproject.toml
File metadata and controls
45 lines (42 loc) · 867 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
[tool.black]
line-length = 100
target-version = ['py39', 'py310', 'py311']
include = '\.pyi?$'
extend-exclude = '''
/(
# directories
\.eggs
| \.git
| \.venv
| venv
| build
| dist
)/
'''
[tool.isort]
profile = "black"
line_length = 100
skip_gitignore = true
[tool.mypy]
python_version = "3.9"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false
ignore_missing_imports = true
exclude = [
'venv',
'.venv',
'build',
'dist',
]
[tool.pytest.ini_options]
markers = [
"aggregate: aggregation pipeline tests",
"collection_mgmt: collection management tests",
"find: find operation tests",
"insert: insert operation tests",
"slowtest: tests that are slow to run",
"smoke: smoke tests",
"structures: structure validation tests",
"unit: fast unit tests with no external dependencies",
]