[Python-modules-commits] r29310 - in packages/python-tornado/trunk/debian (3 files)

jtaylor-guest at users.alioth.debian.org jtaylor-guest at users.alioth.debian.org
Wed Jun 11 23:05:13 UTC 2014


    Date: Wednesday, June 11, 2014 @ 23:05:12
  Author: jtaylor-guest
Revision: 29310

skip-timing-tests.patch

skip tests that need fast machines (Closes: #751343)

Added:
  packages/python-tornado/trunk/debian/patches/skip-timing-tests.patch
Modified:
  packages/python-tornado/trunk/debian/changelog
  packages/python-tornado/trunk/debian/patches/series

Modified: packages/python-tornado/trunk/debian/changelog
===================================================================
--- packages/python-tornado/trunk/debian/changelog	2014-06-11 20:21:57 UTC (rev 29309)
+++ packages/python-tornado/trunk/debian/changelog	2014-06-11 23:05:12 UTC (rev 29310)
@@ -1,6 +1,8 @@
 python-tornado (3.2.1-1) unstable; urgency=medium
 
   * New upstream release
+  * skip-timing-tests.patch:
+    skip tests that need fast machines (Closes: #751343)
 
  -- Julian Taylor <jtaylor.debian at googlemail.com>  Mon, 19 May 2014 21:42:13 +0200
 

Modified: packages/python-tornado/trunk/debian/patches/series
===================================================================
--- packages/python-tornado/trunk/debian/patches/series	2014-06-11 20:21:57 UTC (rev 29309)
+++ packages/python-tornado/trunk/debian/patches/series	2014-06-11 23:05:12 UTC (rev 29310)
@@ -2,3 +2,4 @@
 certs-path.patch
 ignoreuserwarning.patch
 domain-test.patch
+skip-timing-tests.patch

Added: packages/python-tornado/trunk/debian/patches/skip-timing-tests.patch
===================================================================
--- packages/python-tornado/trunk/debian/patches/skip-timing-tests.patch	                        (rev 0)
+++ packages/python-tornado/trunk/debian/patches/skip-timing-tests.patch	2014-06-11 23:05:12 UTC (rev 29310)
@@ -0,0 +1,10 @@
+Description: like travis buildd are often slow so skip the same tests
+--- a/tornado/test/util.py
++++ b/tornado/test/util.py
+@@ -15,5 +15,5 @@ skipIfNonUnix = unittest.skipIf(os.name
+ 
+ # travis-ci.org runs our tests in an overworked virtual machine, which makes
+ # timing-related tests unreliable.
+-skipOnTravis = unittest.skipIf('TRAVIS' in os.environ,
++skipOnTravis = unittest.skipIf(True,
+                                'timing tests unreliable on travis')




More information about the Python-modules-commits mailing list