summaryrefslogtreecommitdiff
path: root/NEWS
diff options
context:
space:
mode:
authorRobert Collins <robertc@robertcollins.net>2009-07-29 07:44:28 +1000
committerRobert Collins <robertc@robertcollins.net>2009-07-29 07:44:28 +1000
commit89296f1cea44baf53db9194bebeee03847eb7b7f (patch)
tree198dd687483703bedd157823cdc026a6cada5da0 /NEWS
parent7aa495ccf553cf96c04cf2c2419aec8dd7465fac (diff)
downloadsubunit-git-89296f1cea44baf53db9194bebeee03847eb7b7f.tar.gz
Hook in progress bars for subunit2pyunit.
Diffstat (limited to 'NEWS')
-rw-r--r--NEWS13
1 files changed, 13 insertions, 0 deletions
diff --git a/NEWS b/NEWS
index ef74b43..24f2f6e 100644
--- a/NEWS
+++ b/NEWS
@@ -10,10 +10,23 @@ subunit release notes
IMPROVEMENTS:
+ * Subunit streams can now include optional, incremental lookahead
+ information about progress. This allows reporters to make estimates
+ about completion, when such information is available. See the README
+ under ``progress`` for more details.
+
+ * ``subunit2pyunit`` has a --progress flag which will cause the bzrlib
+ test reporter to be used, which has a textual progress bar. This requires
+ a recent bzrlib as a minor bugfix was required in bzrlib to support this.
+
BUG FIXES:
API CHANGES:
+ * When a progress: directive is encountered in a subunit stream, the
+ python bindings now call the ``progress(offset, whence)`` methd on
+ ``TestResult``.
+
* When a time: directive is encountered in a subunit stream, the python
bindings now call the ``time(seconds)`` method on ``TestResult``.