This does introduce some not-so-nice things, like having to annotate each `__init__` function with `-> None`. However, the benefits of having static type checking in a complex bit of software like BAT outweigh the downsides.
12 lines
205 B
INI
12 lines
205 B
INI
[tool:pytest]
|
|
addopts = -v --cov blender_asset_tracer --cov-report term-missing
|
|
|
|
[pep8]
|
|
max-line-length = 100
|
|
|
|
[mypy]
|
|
# matches the latest Blender release
|
|
python_version = 3.5
|
|
|
|
warn_redundant_casts = True
|