This repository has been archived on 2023-02-07. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
flamenco-worker/setup.cfg
Sybren A. Stüvel b617c17617 Removed mypy warn_unused_ignores=True setting
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.
2019-01-10 17:42:04 +01:00

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