2014-05-18 23:38:59 +03:00
|
|
|
[tox]
|
2014-06-11 21:31:36 +03:00
|
|
|
# toxworkdir = /tmp/.tox
|
|
|
|
|
# toxworkdir = C:\Users\User\Downloads\.tox
|
|
|
|
|
envlist = lint
|
2014-05-18 23:38:59 +03:00
|
|
|
|
|
|
|
|
[testenv]
|
|
|
|
|
envlogdir = /tmp/toxlogdir
|
|
|
|
|
envtmpdir = /tmp/toxtmpdir
|
|
|
|
|
commands =
|
|
|
|
|
{envpython} --version
|
|
|
|
|
|
|
|
|
|
[testenv:develop]
|
|
|
|
|
usedevelop = True
|
|
|
|
|
deps =
|
|
|
|
|
isort
|
|
|
|
|
flake8
|
2014-06-13 20:50:51 +03:00
|
|
|
wheel
|
2014-06-11 21:31:36 +03:00
|
|
|
commands =
|
|
|
|
|
pip install --egg scons
|
2014-05-18 23:38:59 +03:00
|
|
|
|
|
|
|
|
[testenv:lint]
|
|
|
|
|
deps =
|
|
|
|
|
flake8
|
|
|
|
|
pylint
|
|
|
|
|
commands =
|
|
|
|
|
flake8 ./platformio
|
|
|
|
|
pylint --rcfile=./.pylintrc ./platformio
|