2014-10-13 15:08:59 -04:00
|
|
|
[tox]
|
2020-12-28 20:59:01 -06:00
|
|
|
envlist = py36,py37,py38,py39
|
2014-10-13 15:08:59 -04:00
|
|
|
skipsdist = True
|
2016-06-06 10:21:32 -04:00
|
|
|
skip_missing_interpreters = True
|
2014-10-13 15:08:59 -04:00
|
|
|
|
|
|
|
[testenv]
|
2017-09-19 13:14:11 -04:00
|
|
|
setenv =
|
|
|
|
PYTHON="{envpython}"
|
2014-10-13 15:08:59 -04:00
|
|
|
commands =
|
2020-12-28 20:59:01 -06:00
|
|
|
python build.py --modules
|
|
|
|
flake8
|
|
|
|
{posargs:py.test core hscommon}
|
2014-10-13 15:08:59 -04:00
|
|
|
deps =
|
|
|
|
-r{toxinidir}/requirements.txt
|
|
|
|
-r{toxinidir}/requirements-extra.txt
|
|
|
|
|
|
|
|
[flake8]
|
2020-06-27 01:08:12 -05:00
|
|
|
exclude = .tox,env,build,cocoalib,cocoa,help,./qt/dg_rc.py,cocoa/run_template.py,./pkg
|
2014-10-13 15:08:59 -04:00
|
|
|
max-line-length = 120
|
2019-12-31 20:16:27 -06:00
|
|
|
ignore = E731,E203,E501,W503
|
2014-10-13 15:08:59 -04:00
|
|
|
|