Mercurial > code > home > repos > light9
comparison tasks.py @ 1930:d40a653f2bfd
turn off flake8 warnings for some things the autoformatter is doing
Ignore-this: 6a2536eb57b5e52bc3616955b31d50e9
author | Drew Perttula <drewp@bigasterisk.com> |
---|---|
date | Sun, 02 Jun 2019 06:44:24 +0000 |
parents | ddc9a5ef213a |
children | 82e98aa4d159 |
comparison
equal
deleted
inserted
replaced
1929:b4beb35bc454 | 1930:d40a653f2bfd |
---|---|
35 ss = ' '.join(sources) | 35 ss = ' '.join(sources) |
36 ctx.run(f'MYPYPATH=stubs:/my/proj/rdfdb env/bin/mypy --check-untyped-defs {ss}', | 36 ctx.run(f'MYPYPATH=stubs:/my/proj/rdfdb env/bin/mypy --check-untyped-defs {ss}', |
37 pty=True, warn=True) | 37 pty=True, warn=True) |
38 | 38 |
39 sources = ' '.join(bin_sources + pkg_sources()) | 39 sources = ' '.join(bin_sources + pkg_sources()) |
40 ctx.run(f'env/bin/flake8 --ignore=E115,E123,E124,E126,E225,E231,E261,E262,E265,E301,E302,E303,E305,E306,E401,E402,E501,E701,E731,W291,W293,W391,W504 {sources}', warn=True) | 40 ctx.run(f'env/bin/flake8 --ignore=E115,E123,E124,E126,E225,E231,E261,E262,E265,E301,E302,E303,E305,E306,E401,E402,E501,E701,E731,W291,W293,W391,W504,E131,E125 {sources}', warn=True) |
41 | 41 |
42 sources = ' '.join(pkg_sources()) | 42 sources = ' '.join(pkg_sources()) |
43 run(['bin/collector']) | 43 run(['bin/collector']) |
44 run(['bin/rdfdb']) | 44 run(['bin/rdfdb']) |
45 run(['bin/keyboardcomposer']) | 45 run(['bin/keyboardcomposer']) |