Rev 4722: (mbp) drop '%d missing' from test progress bar in file:///home/pqm/archives/thelove/bzr/%2Btrunk/
Canonical.com Patch Queue Manager
pqm at pqm.ubuntu.com
Thu Oct 1 17:39:24 BST 2009
At file:///home/pqm/archives/thelove/bzr/%2Btrunk/
------------------------------------------------------------
revno: 4722 [merge]
revision-id: pqm at pqm.ubuntu.com-20091001163921-yz8icndv12ur9y8v
parent: pqm at pqm.ubuntu.com-20091001072307-u01ny02917u8mmfg
parent: mbp at sourcefrog.net-20091001144443-wjkljh0sszvrnxiq
committer: Canonical.com Patch Queue Manager <pqm at pqm.ubuntu.com>
branch nick: +trunk
timestamp: Thu 2009-10-01 17:39:21 +0100
message:
(mbp) drop '%d missing' from test progress bar
modified:
NEWS NEWS-20050323055033-4e00b5db738777ff
bzrlib/tests/__init__.py selftest.py-20050531073622-8d0e3c8845c97a64
=== modified file 'NEWS'
--- a/NEWS 2009-09-29 04:51:58 +0000
+++ b/NEWS 2009-10-01 14:44:43 +0000
@@ -166,6 +166,9 @@
documentation in ``developers/testing.txt`` for details.
(Vincent Ladeuil)
+* Stop showing the number of tests due to missing features in the test
+ progress bar. (Martin Pool)
+
* Test parameterisation now does a shallow copy, not a deep copy of the test
to be parameterised. This is not expected to break external use of test
parameterisation, and is substantially faster. (Robert Collins)
=== modified file 'bzrlib/tests/__init__.py'
--- a/bzrlib/tests/__init__.py 2009-09-25 05:19:17 +0000
+++ b/bzrlib/tests/__init__.py 2009-10-01 14:44:43 +0000
@@ -496,8 +496,8 @@
a += ', %d err' % self.error_count
if self.failure_count:
a += ', %d fail' % self.failure_count
- if self.unsupported:
- a += ', %d missing' % len(self.unsupported)
+ # if self.unsupported:
+ # a += ', %d missing' % len(self.unsupported)
a += ']'
return a
More information about the bazaar-commits
mailing list