-
-
Notifications
You must be signed in to change notification settings - Fork 295
/
Copy pathpyproject.toml
65 lines (52 loc) · 1.25 KB
/
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
[tool.interrogate]
ignore-init-method = false
ignore-init-module = true
ignore-magic = true
ignore-semiprivate = true
ignore-private = true
ignore-property-decorators = false
ignore-module = false
fail-under = 1.0
verbose = 2
quiet = false
whitelist-regex = []
color = true
[tool.mypy]
ignore_missing_imports = true
warn_unused_configs = true
disable_error_code = "annotation-unchecked"
[[tool.mypy.overrides]]
module = "avalanche.benchmarks.classic.*"
ignore_errors = true
[[tool.mypy.overrides]]
module = "avalanche.benchmarks.datasets.*"
ignore_errors = true
[[tool.mypy.overrides]]
module = "avalanche.benchmarks.utils.*"
ignore_errors = true
[[tool.mypy.overrides]]
module = "avalanche.training.*"
ignore_errors = true
[[tool.mypy.overrides]]
module = "avalanche.logging.*"
ignore_errors = true
[[tool.mypy.overrides]]
module = "avalanche.metrics"
ignore_errors = true
[[tool.mypy.overrides]]
module = "avalanche.models.*"
ignore_errors = true
[[tool.mypy.overrides]]
module = "avalanche.evaluation.*"
ignore_errors = true
[[tool.mypy.overrides]]
module = "examples.*"
ignore_errors = true
[[tool.mypy.overrides]]
module = "tests.*"
ignore_errors = true
[[tool.mypy.overrides]]
module = "profiling.*"
ignore_errors = true
[tool.pytest.ini_options]
addopts="-n 4"