__main__.py 335 B

123456789101112
  1. """Shim to allow python -m tornado.test.
  2. This only works in python 2.7+.
  3. """
  4. from tornado.test.runtests import all, main
  5. # tornado.testing.main autodiscovery relies on 'all' being present in
  6. # the main module, so import it here even though it is not used directly.
  7. # The following line prevents a pyflakes warning.
  8. all = all
  9. main()