mirror of
https://github.com/kernc/backtesting.py.git
synced 2024-01-28 15:29:30 +03:00
31 lines
445 B
INI
31 lines
445 B
INI
[flake8]
|
|
max-line-length = 100
|
|
exclude =
|
|
.git,
|
|
.eggs,
|
|
__pycache__,
|
|
doc/examples
|
|
|
|
[mypy]
|
|
warn_unused_ignores = True
|
|
warn_redundant_casts = True
|
|
ignore_missing_imports = True
|
|
|
|
[coverage:run]
|
|
parallel = 1
|
|
concurrency =
|
|
multiprocessing
|
|
source =
|
|
backtesting
|
|
doc/examples
|
|
omit =
|
|
|
|
[coverage:report]
|
|
exclude_lines =
|
|
^\s*continue\b
|
|
^\s*return\b
|
|
^\s*raise\b
|
|
^\s*except\b
|
|
^\s*warnings\.warn\(
|
|
^\s*warn\(
|