From: Ben Darnell Date: Sun, 2 Mar 2014 16:06:06 +0000 (-0500) Subject: Exclude another timing-sensitive test from the travis build. X-Git-Tag: v4.0.0b1~109 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d4627e09bd7d919acec19543ff1ed689fa0eb7c9;p=thirdparty%2Ftornado.git Exclude another timing-sensitive test from the travis build. --- diff --git a/tornado/test/httpclient_test.py b/tornado/test/httpclient_test.py index 3b19c20e7..7ffddbc35 100644 --- a/tornado/test/httpclient_test.py +++ b/tornado/test/httpclient_test.py @@ -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)