-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
42 lines (35 loc) · 960 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
[build-system]
requires = ["setuptools>=43.0.0", "wheel", "setuptools_scm>=6.2"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
local_scheme = "no-local-version"
[tool.pytest.ini_options]
pythonpath = [
"src"
]
log_cli = 1
log_cli_level = "error"
markers = [
"mqtt_broker_users",
"serial_simulate_timeout",
"serial_exchange",
"config_yaml"
]
[tool.pylint.main]
load-plugins = "pylint.extensions.no_self_use"
# Newer `pylint` raises errors on using `dict()`, ignore those for now
disable = "use-dict-literal"
[tool.pylint.typecheck]
signature-mutators = [
# Ignore mutations (number of function arguments) introduced by
# `patch.object` decorator of `unittest.mock`
"unittest.mock._patch_object"
]
[[tool.mypy.overrides]]
# No typing support in the module
module = "iec62056_21.*"
ignore_missing_imports = true
[[tool.mypy.overrides]]
# No typing support in the module
module = "callee.*"
ignore_missing_imports = true