diff options
author | Satoshi Kobayashi <satoshi-k@stratosphere.co.jp> | 2013-08-29 11:31:50 +0900 |
---|---|---|
committer | FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp> | 2013-09-02 12:35:05 +0900 |
commit | d2246e6626f58299f56518114d8c65cac2d83365 (patch) | |
tree | 18276526be65d8a97797ae588b1065cde14a16f3 /tox.ini | |
parent | bab02cfabae35e1c9beda582a7507d8b2c05670d (diff) |
Add a configuration file for tox (http://testrun.org/tox/)
Python 2.6 and 2.7 interpreters are added to PATH, you can execute the following. Each virtual environment will be made and a test will be run.
$ tox
NOTE: py33 was failure because dependence packages are not worked on Python3 (At least: Eventlet).
Signed-off-by: Satoshi Kobayashi <satoshi-k@stratosphere.co.jp>
Signed-off-by: FUJITA Tomonori <fujita.tomonori@lab.ntt.co.jp>
Diffstat (limited to 'tox.ini')
-rw-r--r-- | tox.ini | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tox.ini b/tox.ini new file mode 100644 index 00000000..a83b043f --- /dev/null +++ b/tox.ini @@ -0,0 +1,9 @@ +[tox] +envlist = py26,py27 + +[testenv] +deps = -U + -r{toxinidir}/tools/pip-requires + -r{toxinidir}/tools/test-requires +commands = + python ryu/tests/run_tests.py |