From: Ben Darnell Date: Thu, 14 Feb 2013 04:03:25 +0000 (-0500) Subject: Add a tox config for testing with the pyuv-based IOLoop. X-Git-Tag: v3.0.0~125 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d98afd41f1c1fe1f4a2c463f0526d3a684c0e423;p=thirdparty%2Ftornado.git Add a tox config for testing with the pyuv-based IOLoop. --- diff --git a/maint/test/pyuv/tox.ini b/maint/test/pyuv/tox.ini new file mode 100644 index 000000000..84643b7d0 --- /dev/null +++ b/maint/test/pyuv/tox.ini @@ -0,0 +1,15 @@ +[tox] +envlist = py27 +setupdir = ../../.. + +[testenv] +# tornado-pyuv is not installable unless pyuv is installed first; +# listing them both in deps doesn't install them in order. +commands = + pip install git+https://github.com/saghul/tornado-pyuv.git + python -m tornado.test.runtests --ioloop=tornado_pyuv.UVLoop {posargs:} +# twisted tests don't work on pyuv IOLoop currently. +deps = + git+https://github.com/saghul/pyuv.git + futures + mock