mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-11-14 03:29:02 +00:00
24 lines
542 B
INI
24 lines
542 B
INI
[tox]
|
|
envlist = py34,py35,py36
|
|
skipsdist = True
|
|
skip_missing_interpreters = True
|
|
|
|
[testenv]
|
|
whitelist_externals =
|
|
make
|
|
setenv =
|
|
PYTHON="{envpython}"
|
|
commands =
|
|
make modules
|
|
flake8
|
|
py.test core hscommon
|
|
deps =
|
|
-r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/requirements-extra.txt
|
|
|
|
[flake8]
|
|
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
|
|
ignore = W391,W293,E302,E261,E226,E227,W291,E262,E303,E265,E731,E305,E741
|
|
|