aboutsummaryrefslogtreecommitdiff
path: root/pyproject.toml
blob: 05363d8941362d7b3e339e5d8377943d84536907 (plain)
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
# SPDX-FileCopyrightText: Copyright 2022, Arm Limited and/or its affiliates.
# SPDX-FileCopyrightText: Copyright (c) 2012-2022 Jukka Lehtosalo and contributors
# SPDX-FileCopyrightText: Copyright (c) 2015-2022 Dropbox, Inc.
# SPDX-License-Identifier: Apache-2.0 AND MIT


[build-system]
requires = [
    "setuptools>=42",
    "wheel",
    "setuptools_scm[toml]>=6.2"
]
build-backend = "setuptools.build_meta"

# Enable setuptools_scm
[tool.setuptools_scm]

[tool.pytest.ini_options]
testpaths = "tests"
markers = [
    "e2e",       # e2e tests
    "install",   # installation tests
    "command",   # command tests
    "model_gen"  # model generation tests
]
junit_logging = "all"

[tool.pylint.messages_control]
min-similarity-lines = 10
min-public-methods = 1
max-line-length = 88
max-args = 8
max-attributes=10

# Provide basic compatibility with black
disable = [
  "wrong-import-order",
  "consider-using-f-string" # C0209
]

enable = [
  "dangerous-default-value",       # W0102
  # black will reflow code lines, but won't touch comments, error on those
  "line-too-long"                  # C0301
]

[tool.mypy]
# Suppresses error messages about imports that cannot be resolved
ignore_missing_imports = true
# Shows a warning when encountering any code inferred to be unreachable or redundant after performing type analysis
warn_unreachable = true
# Shows errors for missing return statements on some execution paths
warn_no_return = true
# Shows a warning when returning a value with type Any from a function declared with a non- Any return type
warn_return_any = true
# Warns about unneeded # type: ignore comments
warn_unused_ignores = true
# Warns about casting an expression to its inferred type
warn_redundant_casts = true
# Disallows calling functions without type annotations from functions with type annotations
disallow_untyped_calls = true
# Disallows defining functions without type annotations or with incomplete type annotations
disallow_untyped_defs = true
# Disallows defining functions with incomplete type annotations
disallow_incomplete_defs = true
# Reports an error whenever a function with type annotations is decorated with a decorator without annotations
disallow_untyped_decorators = true
# Type-checks the interior of functions without type annotations
check_untyped_defs = true

[[tool.mypy.overrides]]
module = [
    "pkg_resources",
    "paramiko",
    "requests",
    "filelock"
]
ignore_missing_imports = true