1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
|
[flake8]
max-complexity = 12
max-line-length = 80
ignore = E501,W503,E741,N802,N803,N806,N812,B905
select = C,E,F,N,W,B,B9,Q0
[isort]
multi_line_output = 3
include_trailing_comma = 1
line_length = 85
sections = FUTURE,STDLIB,TYPING,THIRDPARTY,FIRSTPARTY,LOCALFOLDER
known_typing = typing, typing_extensions
no_lines_before = TYPING
combine_as_imports = true
[pydocstyle]
add-ignore = D100,D104,D105,D107,D202
ignore-decorators = wraps
[tool:pytest]
norecursedirs = tests/pymbd_testutils
filterwarnings =
ignore::PendingDeprecationWarning
markers =
no_scalapack: test doesn't work with ScaLAPACK
[coverage:run]
branch = true
source = pymbd
parallel = true
omit =
*/pymbd/tensorflow.py
*/pymbd/benchmark.py
|