]> git.ipfire.org Git - thirdparty/tornado.git/commitdiff
Exclude another timing-sensitive test from the travis build.
authorBen Darnell <ben@bendarnell.com>
Sun, 2 Mar 2014 16:06:06 +0000 (11:06 -0500)
committerBen Darnell <ben@bendarnell.com>
Sun, 2 Mar 2014 16:06:06 +0000 (11:06 -0500)
tornado/test/httpclient_test.py

index 3b19c20e7fa3f3fad86c84d0b7f97a2de479f54c..7ffddbc3597a19874b5ee40eac48e616ed9f0eb7 100644 (file)
@@ -18,7 +18,7 @@ from tornado.log import gen_log
 from tornado import netutil
 from tornado.stack_context import ExceptionStackContext, NullContext
 from tornado.testing import AsyncHTTPTestCase, bind_unused_port, gen_test, ExpectLog
-from tornado.test.util import unittest
+from tornado.test.util import unittest, skipOnTravis
 from tornado.util import u, bytes_type
 from tornado.web import Application, RequestHandler, url
 
@@ -110,6 +110,7 @@ class HTTPClientCommonTestCase(AsyncHTTPTestCase):
             url("/all_methods", AllMethodsHandler),
         ], gzip=True)
 
+    @skipOnTravis
     def test_hello_world(self):
         response = self.fetch("/hello")
         self.assertEqual(response.code, 200)