Some errors are platform-specific (e.g. using asyncio.ProactorEventLoop only exists on Windows and thus mypy complains on Linux) so ignoring those is needed on Linux but not on Windows. Yay.
12 lines
227 B
INI
12 lines
227 B
INI
[tool:pytest]
|
|
addopts = -v --cov flamenco_worker --cov-report term-missing --ignore node_modules
|
|
|
|
[mypy]
|
|
python_version = 3.7
|
|
ignore_missing_imports = True
|
|
follow_imports = skip
|
|
incremental = True
|
|
|
|
[pep8]
|
|
max-line-length = 100
|