3 changed files with 23 additions and 1 deletions
@ -1,3 +1,24 @@ |
|||||||
# content of pytest.ini |
# content of pytest.ini |
||||||
[tool:pytest] |
[tool:pytest] |
||||||
testpaths = jmbitcoin jmclient jmbase jmdaemon test |
testpaths = jmbitcoin jmclient jmbase jmdaemon test |
||||||
|
|
||||||
|
[flake8] |
||||||
|
exclude = |
||||||
|
# defaults |
||||||
|
.svn,CVS,.bzr,.hg,.git,__pycache__,.tox, |
||||||
|
# lots of "unused imports" |
||||||
|
__init__.py, |
||||||
|
# unmaintained |
||||||
|
jmclient/jmclient/slowaes.py |
||||||
|
|
||||||
|
# default value, keep? |
||||||
|
max-line-length = 79 |
||||||
|
|
||||||
|
statistics = True |
||||||
|
max-complexity = 15 |
||||||
|
|
||||||
|
# should be extended once existing issues are fixed |
||||||
|
select = F,E9,W6 |
||||||
|
|
||||||
|
# those cause many errors, need to be fixed eventually |
||||||
|
ignore = F403,F405,F841 |
||||||
|
|||||||
Loading…
Reference in new issue