我们从Python开源项目中,提取了以下9个代码示例,用于说明如何使用tornado.autoreload()。
def tearDown(self): if (not IOLoop.initialized() or self.io_loop is not IOLoop.instance()): # Try to clean up any file descriptors left open in the ioloop. # This avoids leaks, especially when tests are run repeatedly # in the same process with autoreload (because curl does not # set FD_CLOEXEC on its file descriptors) self.io_loop.close(all_fds=True) super(AsyncTestCase, self).tearDown()
def main(port): #train() load_grocery() tornado.options.parse_command_line() print "start on port %s..." % port http_server = tornado.httpserver.HTTPServer(Application(), xheaders=True) http_server.listen(port) #tornado.autoreload.start() tornado.ioloop.IOLoop.instance().start()
def add_arguments(cls, subparser): subparser.add_argument( '--autoreload', action='store_true', help='Auto reload static files - use for development') subparser.add_argument( '-p', '--port', type=int, default=8080, help='Specify alternate port')
def init_agent(self): # Build list of async methods, to be used from the tornado thread self.async_proxy = AsyncProxy(self) self.dstore = DescriptorStore(self, self.async_proxy) self.ioloop = tornado.ioloop.IOLoop.instance() self.gui = Application(self.dstore, self.async_proxy, self.ioloop, autoreload=self.config['autoreload']) self.gui.listen(self.config['port']) t = threading.Thread(target=self.ioloop.start) t.daemon = True t.start()
def __init__(self, auto_reload=True, port=8888): self.app = MyApplication(autoreload=True) self.auto_reload = auto_reload self.port = port logger.info("started server " + str(port) + (" with autoreload mode" if self.auto_reload else ""))
def add_watch(self, watch_file): tornado.autoreload.watch(watch_file)
def main(): """A simple test runner. This test runner is essentially equivalent to `unittest.main` from the standard library, but adds support for tornado-style option parsing and log formatting. The easiest way to run a test is via the command line:: python -m tornado.testing tornado.test.stack_context_test See the standard library unittest module for ways in which tests can be specified. Projects with many tests may wish to define a test script like tornado/test/runtests.py. This script should define a method all() which returns a test suite and then call tornado.testing.main(). Note that even when a test script is used, the all() test suite may be overridden by naming a single test on the command line:: # Runs all tests tornado/test/runtests.py # Runs one test tornado/test/runtests.py tornado.test.stack_context_test """ from tornado.options import define, options, parse_command_line define('autoreload', type=bool, default=False, help="DEPRECATED: use tornado.autoreload.main instead") define('httpclient', type=str, default=None) argv = [sys.argv[0]] + parse_command_line(sys.argv) if options.httpclient: from tornado.httpclient import AsyncHTTPClient AsyncHTTPClient.configure(options.httpclient) if __name__ == '__main__' and len(argv) == 1: print >> sys.stderr, "No tests specified" sys.exit(1) try: # In order to be able to run tests by their fully-qualified name # on the command line without importing all tests here, # module must be set to None. Python 3.2's unittest.main ignores # defaultTest if no module is given (it tries to do its own # test discovery, which is incompatible with auto2to3), so don't # set module if we're not asking for a specific test. if len(argv) > 1: unittest.main(module=None, argv=argv) else: unittest.main(defaultTest="all", argv=argv) except SystemExit, e: if e.code == 0: logging.info('PASS') else: logging.error('FAIL') if not options.autoreload: raise if options.autoreload: import tornado.autoreload tornado.autoreload.wait()