blob: ea11e92cb91b977874c0076ca29c7149456ada14 [file]
[tox]
envlist = py{27,34,35,36,37}
[testenv]
setenv =
PYTHONPATH={toxinidir}/vtr_xml_utils
basepython =
py35: python3.5
py36: python3.6
py37: python3.7
deps =
check-manifest
# If your project uses README.rst, uncomment the following:
# readme_renderer
flake8
pytest
lxml
commands =
check-manifest --ignore tox.ini,tests*
# This repository uses a Markdown long_description, so the -r flag to
# `setup.py check` is not needed. If your project contains a README.rst,
# use `python setup.py check -m -r -s` instead.
python setup.py check -m -s
flake8 .
pytest -vvvv
[flake8]
exclude = .tox,*.egg,build,data
select = E,W,F