dupeguru/tox.ini

38 lines
668 B
INI
Raw Normal View History

[tox]
2020-05-30 08:33:35 -05:00
envlist = style,py36,py37,py38
skipsdist = True
2016-06-06 09:21:32 -05:00
skip_missing_interpreters = True
[testenv]
whitelist_externals =
make
setenv =
PYTHON="{envpython}"
commands =
make modules
2016-06-06 09:21:32 -05:00
py.test core hscommon
deps =
-r{toxinidir}/requirements.txt
-r{toxinidir}/requirements-extra.txt
2020-05-30 08:33:35 -05:00
[testenv:style]
deps =
{[testenv]deps}
flake8
2020-05-30 08:33:35 -05:00
commands =
flake8
2019-05-22 10:31:07 -05:00
[testenv:WINDOWS]
deps =
{[testenv]deps}
2019-05-22 10:31:07 -05:00
-r{toxinidir}/requirements-windows.txt
commands =
python build.py
python package.py
2019-05-22 10:31:07 -05:00
[flake8]
exclude = .tox,env,build,cocoalib,cocoa,help,./qt/dg_rc.py,cocoa/run_template.py,./pkg
max-line-length = 120
ignore = E731,E203,E501,W503