1
1
Fork 0
mirror of https://github.com/pypa/pip synced 2023-12-13 21:30:23 +01:00
pip/tox.ini
Donald Stufft 95035fc5c4 Turn on everything in flake8
flake8 ignores some errors by default, these ignored by defaults
change sometimes. This will make things stabler by selecting
everything.
2014-02-24 16:52:23 -05:00

35 lines
567 B
INI

[tox]
envlist =
docs,pep8,py3pep8,py26,py27,py32,py33,pypy
[testenv]
deps =
pytest
mock
scripttest>=1.3
git+https://github.com/pypa/virtualenv@develop#egg=virtualenv
commands =
py.test []
[testenv:docs]
deps = sphinx
basepython = python2.7
commands =
sphinx-build -W -b html -d {envtmpdir}/doctrees docs docs/_build/html
[testenv:pep8]
basepython = python2.7
deps = flake8
commands = flake8 .
[testenv:py3pep8]
basepython = python3.3
deps = flake8
commands = flake8 .
[flake8]
exclude = .tox,*.egg,build,_vendor,data
select = E,W,F