diff options
author | IWAMOTO Toshihiro <iwamoto@valinux.co.jp> | 2015-06-20 00:10:23 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2015-06-20 21:18:58 +0900 |
commit | e83acc434daac59d62aa7ffb6a822e51a16112af (patch) | |
tree | b57b5e4b52ec9feadec68a8bb1f8624f193ebed7 /tox.ini | |
parent | d67a22647fd53788c0a0934c7c0a7aa712945360 (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.ini | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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}' |