summaryrefslogtreecommitdiffhomepage
path: root/tox.ini
diff options
context:
space:
mode:
authorIWAMOTO Toshihiro <iwamoto@valinux.co.jp>2015-06-20 00:10:23 +0900
committerFUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>2015-06-20 21:18:58 +0900
commite83acc434daac59d62aa7ffb6a822e51a16112af (patch)
treeb57b5e4b52ec9feadec68a8bb1f8624f193ebed7 /tox.ini
parentd67a22647fd53788c0a0934c7c0a7aa712945360 (diff)
tox.ini: Be able to run python3 unit tests
With this change, you can run "tox -e py34" to test python3 compatibility. Signed-off-by: IWAMOTO Toshihiro <iwamoto@valinux.co.jp> Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'tox.ini')
-rw-r--r--tox.ini3
1 files changed, 2 insertions, 1 deletions
diff --git a/tox.ini b/tox.ini
index b88e6dc7..a1a68273 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,10 +1,11 @@
[tox]
-envlist = py26,py27,pep8
+envlist = py26,py27,py34,pep8
[testenv]
deps = -U
-r{toxinidir}/tools/pip-requires
-r{toxinidir}/tools/test-requires
+usedevelop = True
commands =
python ryu/tests/run_tests.py '{posargs}'