Rev 5550: (gz) Change minimum required testtools version for selftest to 0.9.5 for in file:///home/pqm/archives/thelove/bzr/%2Btrunk/

Canonical.com Patch Queue Manager pqm at pqm.ubuntu.com
Wed Nov 24 17:20:58 GMT 2010


At file:///home/pqm/archives/thelove/bzr/%2Btrunk/

------------------------------------------------------------
revno: 5550 [merge]
revision-id: pqm at pqm.ubuntu.com-20101124172055-79va5spncm8wu6ay
parent: pqm at pqm.ubuntu.com-20101123165450-bmll7p8fjng1d8xy
parent: gzlist at googlemail.com-20101119225831-xzgpivvp6gx3sxv9
committer: Canonical.com Patch Queue Manager <pqm at pqm.ubuntu.com>
branch nick: +trunk
timestamp: Wed 2010-11-24 17:20:55 +0000
message:
  (gz) Change minimum required testtools version for selftest to 0.9.5 for
   unicode fixes (Martin [gz])
modified:
  bzrlib/tests/__init__.py       selftest.py-20050531073622-8d0e3c8845c97a64
  doc/en/release-notes/bzr-2.3.txt NEWS-20050323055033-4e00b5db738777ff
=== modified file 'bzrlib/tests/__init__.py'
--- a/bzrlib/tests/__init__.py	2010-10-18 17:06:37 +0000
+++ b/bzrlib/tests/__init__.py	2010-11-19 22:58:31 +0000
@@ -55,8 +55,8 @@
 import testtools
 # nb: check this before importing anything else from within it
 _testtools_version = getattr(testtools, '__version__', ())
-if _testtools_version < (0, 9, 2):
-    raise ImportError("need at least testtools 0.9.2: %s is %r"
+if _testtools_version < (0, 9, 5):
+    raise ImportError("need at least testtools 0.9.5: %s is %r"
         % (testtools.__file__, _testtools_version))
 from testtools import content
 

=== modified file 'doc/en/release-notes/bzr-2.3.txt'
--- a/doc/en/release-notes/bzr-2.3.txt	2010-11-22 03:35:24 +0000
+++ b/doc/en/release-notes/bzr-2.3.txt	2010-11-24 17:20:55 +0000
@@ -108,6 +108,10 @@
   Instead, use '...' as a wildcard if you don't care about the output.
   (Martin Pool, #637830)
 
+* Bump minimum testtools version required to run ``bzr selftest`` from 0.9.2
+  to 0.9.5 which will allow tests that need the fixed unicode handling to be
+  written. (Martin [gz])
+
 
 bzr 2.3b3
 #########




More information about the bazaar-commits mailing list