Sybren A. Stüvel c1aaa3aab3 Add some log level configuration to py.test config
Not sure if we want a global DEBUG setting; if it becomes annoying, change it.
2018-11-27 14:29:37 +01:00

17 lines
368 B
INI

[tool:pytest]
addopts = -v --cov blender_asset_tracer --cov-report term-missing
log_format = %(asctime)s %(levelname)s %(name)s %(message)s
log_date_format = %Y-%m-%d %H:%M:%S
log_level = DEBUG
[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