From: Ben Darnell Date: Fri, 19 Oct 2012 01:20:53 +0000 (-0400) Subject: Add a comment to runtests.sh about python 3. X-Git-Tag: v3.0.0~234 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=db843a5987cf927c1ecaa348ba65e324f3c08553;p=thirdparty%2Ftornado.git Add a comment to runtests.sh about python 3. Closes #612. --- diff --git a/runtests.sh b/runtests.sh index 07bd360a1..4058c0243 100755 --- a/runtests.sh +++ b/runtests.sh @@ -1,4 +1,12 @@ #!/bin/sh +# Run the Tornado test suite. +# +# Also consider using tox, which uses virtualenv to run the test suite +# under multiple versions of python. +# +# This script requires that `python` is python 2.x; to run the tests under +# python 3 tornado must be installed so that 2to3 is run. The easiest +# way to run the tests under python 3 is with tox: "tox -e py32". cd $(dirname $0)