You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
678 B
Python
20 lines
678 B
Python
from __future__ import absolute_import, division, print_function, with_statement
|
|
|
|
import os
|
|
import sys
|
|
|
|
# Encapsulate the choice of unittest or unittest2 here.
|
|
# To be used as 'from tornado.test.util import unittest'.
|
|
if sys.version_info >= (2, 7):
|
|
import unittest
|
|
else:
|
|
import unittest2 as unittest
|
|
|
|
skipIfNonUnix = unittest.skipIf(os.name != 'posix' or sys.platform == 'cygwin',
|
|
"non-unix platform")
|
|
|
|
# travis-ci.org runs our tests in an overworked virtual machine, which makes
|
|
# timing-related tests unreliable.
|
|
skipOnTravis = unittest.skipIf('TRAVIS' in os.environ,
|
|
'timing tests unreliable on travis')
|