tornado/maint/test/appengine
Ben Darnell 4b6fc9cb9f Fix Tornado on Google App Engine.
Imports of tornado.ioloop have crept into more places, so the old
app engine policy of never importing these modules doesn't work.
Instead, we add guards around imports of unavailable modules
(fcntl, ssl, multiprocessing) so that everything is at least importable.

Closes #1059.
2014-05-17 10:56:35 -04:00
..
common Fix Tornado on Google App Engine. 2014-05-17 10:56:35 -04:00
py27 Move maint/appengine to maint/test/appengine 2012-08-30 14:41:24 -04:00
README Move maint/appengine to maint/test/appengine 2012-08-30 14:41:24 -04:00
setup.py Move maint/appengine to maint/test/appengine 2012-08-30 14:41:24 -04:00
tox.ini Remove more py25 testing configs 2013-01-13 21:59:48 -05:00

README

Unit test support for app engine.  Currently very limited as most of
our tests depend on direct network access, but these tests ensure that the
modules that are supposed to work on app engine don't depend on any
forbidden modules.

The code lives in maint/appengine/common, but should be run from the py25
or py27 subdirectories (which contain an app.yaml and a bunch of symlinks).
runtests.py is the entry point; cgi_runtests.py is used internally.