00001 """Shim to allow python -m tornado.test. 00002 00003 This only works in python 2.7+. 00004 """ 00005 from __future__ import absolute_import, division, print_function, with_statement 00006 00007 from tornado.test.runtests import all, main 00008 00009 # tornado.testing.main autodiscovery relies on 'all' being present in 00010 # the main module, so import it here even though it is not used directly. 00011 # The following line prevents a pyflakes warning. 00012 all = all 00013 00014 main()