-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathpyproject.toml
49 lines (39 loc) · 936 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
46
47
48
49
[build-system]
requires = ["setuptools>=62", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
[tool.black]
skip-string-normalization = true
target-version = ['py39']
[tool.coverage.report]
omit = [
"src/pytest_opentelemetry/__init__.py",
"src/pytest_opentelemetry/plugin.py"
]
[tool.isort]
profile = "black"
[tool.mypy]
namespace_packages = true
[[tool.mypy.overrides]]
module = ['xdist.workermanage']
ignore_missing_imports = true
[tool.pylint.messages_control]
disable = [
'attribute-defined-outside-init',
'fixme',
'missing-function-docstring',
'missing-module-docstring',
# fundamental to how pytest fixtures work
'redefined-outer-name',
'unused-argument'
]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = """
--cov=src
--cov=tests
--cov-branch
--cov-report=term-missing
--cov-fail-under=100
--no-cov-on-fail
"""