Exemplo n.º 1
0
tornado.iostream.SSLIOStream.configure('tornado_m2crypto.m2iostream.M2IOStream')


import tornado.httputil
tornado.httputil.HTTPServerRequest.configure('tornado_m2crypto.m2httputil.M2HTTPServerRequest')

# Specific test
# M2_TEST_MODULES = [    'tornado.test.iostream_test.TestIOStreamSSL.test_flow_control',]

# All my tests
M2_TEST_MODULES = [    'm2iostream_test.TestIOStreamM2',
                       'tornado.test.httputil_test']

# Not everything passes here yet
# e.g. tornado.test.simple_httpclient_test.SimpleHTTPSClientTestCase
#
# M2_TEST_MODULES = copy.copy(original_runtests.TEST_MODULES)
# M2_TEST_MODULES.remove('tornado.test.iostream_test')
# M2_TEST_MODULES.append('m2iostream_test.TestIOStreamM2')


print "RUNNING %s"%M2_TEST_MODULES




original_runtests.TEST_MODULES = M2_TEST_MODULES

all = original_runtests.all
original_runtests.main()
Exemplo n.º 2
0
"""Shim to allow python -m tornado.test.

This only works in python 2.7+.
"""
from tornado.test.runtests import all, main

# tornado.testing.main autodiscovery relies on 'all' being present in
# the main module, so import it here even though it is not used directly.
# The following line prevents a pyflakes warning.
all = all

main()