__main__.py 303 B

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