The logging is sent to stdout already (which is captured and printed by PyTest), so having PyTest also capture and print logging just doubles the output. No functional changes.
14 lines
270 B
INI
14 lines
270 B
INI
[tool:pytest]
|
|
addopts = -v --cov blender_asset_tracer --cov-report term-missing --no-print-logs
|
|
|
|
[pep8]
|
|
max-line-length = 100
|
|
|
|
[mypy]
|
|
# matches the latest Blender release
|
|
python_version = 3.5
|
|
|
|
warn_redundant_casts = True
|
|
ignore_missing_imports = True
|
|
incremental = True
|