mirror of
https://github.com/arsenetar/dupeguru.git
synced 2024-11-04 15:29:02 +00:00
38 lines
668 B
INI
38 lines
668 B
INI
[tox]
|
|
envlist = style,py36,py37,py38
|
|
skipsdist = True
|
|
skip_missing_interpreters = True
|
|
|
|
[testenv]
|
|
whitelist_externals =
|
|
make
|
|
setenv =
|
|
PYTHON="{envpython}"
|
|
commands =
|
|
make modules
|
|
py.test core hscommon
|
|
deps =
|
|
-r{toxinidir}/requirements.txt
|
|
-r{toxinidir}/requirements-extra.txt
|
|
|
|
[testenv:style]
|
|
deps =
|
|
{[testenv]deps}
|
|
flake8
|
|
commands =
|
|
flake8
|
|
|
|
[testenv:WINDOWS]
|
|
deps =
|
|
{[testenv]deps}
|
|
-r{toxinidir}/requirements-windows.txt
|
|
commands =
|
|
python build.py
|
|
python package.py
|
|
|
|
[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
|
|
|