hacking/tox.ini
Julien Danjou d4721073b8 Add pypy on tox envlist
We want to support it.

Change-Id: Ifa7ceb0bf52569f9a4860fa028a9333bb82c569e
2013-08-29 17:40:09 +02:00

40 lines
753 B
INI

[tox]
distribute = False
envlist = py26,py27,py33,pep8,pypy
[testenv]
setenv = VIRTUAL_ENV={envdir}
LANG=en_US.UTF-8
LANGUAGE=en_US:en
LC_ALL=C
deps = -r{toxinidir}/requirements.txt
-r{toxinidir}/test-requirements.txt
commands =
python setup.py testr --slowest --testr-args='{posargs}'
[tox:jenkins]
sitepackages = True
downloadcache = ~/cache/pip
[testenv:pep8]
commands = flake8
[testenv:integration]
commands =
bash integration-test/test.sh {posargs}
[testenv:cover]
setenv = VIRTUAL_ENV={envdir}
commands =
python setup.py testr --coverage
[testenv:venv]
commands = {posargs}
[flake8]
exclude = .venv,.tox,dist,doc,*.egg,build
show-source = true
[hacking]
local-check = hacking.tests.test_local.check