ryu/tox.ini
IWASE Yusuke dbe6743742 tox: Upgrade PyPy version to 2.6
Recently, Paramiko updates the requirements to 'cryptography>=1.1',
cryptography 1.0 is not compatible with PyPy < 2.6, but PyPy version
of Travis-CI is older than 2.6.
So this causes CI test error.

This patch upgrades PyPy interpreter version to 2.6 in tox environment.

Signed-off-by: IWASE Yusuke <iwase.yusuke0@gmail.com>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
2016-05-09 19:01:17 +09:00

22 lines
436 B
INI

[tox]
envlist = py27,py34,pypy26,pep8
[testenv]
deps = -U
-r{toxinidir}/tools/pip-requires
-r{toxinidir}/tools/test-requires
--no-cache-dir
usedevelop = True
passenv= NOSE_VERBOSE
commands =
python ryu/tests/run_tests.py '{posargs}'
[testenv:pep8]
commands =
pep8
[pep8]
exclude = pbr-*,.venv,.tox,.git,doc,dist,tools,vcsversion.py,.pyc,ryu/contrib,dictconfig.py
ignore = E113,E116,E402,E711,E731,E501,W503