forked from AustinScola/pytest-motor
-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
45 lines (38 loc) · 842 Bytes
/
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
[tool.coverage]
fail_under = 79
[tool.yapf]
column_limit = 100
[tool.pytest.ini_options]
addopts = "--strict-markers"
testpaths = ["tests"]
markers = [
"unit: marks tests as a unit test",
"integration: marks tests as an integration test",
]
[tool.pylint.format]
max-line-length = 100
[tool.pylint.messages_control]
enable = ["useless-suppression"]
disable = ["duplicate-code"]
[tool.mypy]
python_version = "3.6"
warn_return_any = true
warn_unused_configs = true
exclude = "venvs/"
disallow_untyped_defs = true
no_implicit_optional = true
warn_unused_ignores = true
show_error_codes = true
[[tool.mypy.overrides]]
module = [
"setuptools.*",
"motor.*",
"pymongo.*",
"distro.*",
"pytest_lazyfixture.*",
]
ignore_missing_imports = true
[tool.isort]
quiet = true
line_length = 100
skip_glob = ["venvs", "build"]