20 lines
279 B
INI
20 lines
279 B
INI
[tox]
|
|
envlist = py27, py35, py36, py37 flake8
|
|
|
|
[travis]
|
|
python =
|
|
3.7: py37
|
|
3.6: py36
|
|
3.5: py35
|
|
2.7: py27
|
|
|
|
[testenv:flake8]
|
|
basepython = python
|
|
deps = flake8
|
|
commands = flake8 kabot
|
|
|
|
[testenv]
|
|
setenv =
|
|
PYTHONPATH = {toxinidir}
|
|
|
|
commands = python setup.py test
|