dupeguru/tox.ini

24 lines
542 B
INI
Raw Normal View History

[tox]
2017-10-08 19:37:59 -05:00
envlist = py34,py35,py36
skipsdist = True
2016-06-06 09:21:32 -05:00
skip_missing_interpreters = True
[testenv]
whitelist_externals =
make
setenv =
PYTHON="{envpython}"
commands =
make modules
flake8
2016-06-06 09:21:32 -05:00
py.test core hscommon
deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/requirements-extra.txt
[flake8]
2016-05-29 14:02:39 -05:00
exclude = .tox,env,build,hscommon,qtlib,cocoalib,cocoa,help,./qt/dg_rc.py,qt/run_template.py,cocoa/run_template.py,./run.py,./pkg
max-line-length = 120
2017-11-16 09:49:03 -06:00
ignore = W391,W293,E302,E261,E226,E227,W291,E262,E303,E265,E731,E305,E741