1 new commit in pytest:

https://bitbucket.org/hpk42/pytest/changeset/a0dedb1ce96b/
changeset:   a0dedb1ce96b
user:        hpk42
date:        2011-11-08 19:37:08
summary:     fix py3 compat
affected #:  3 files

diff -r bc7d4c092207173c09d504200eac61e9809e6d24 -r 
a0dedb1ce96bd94b63bf97334914da22ec556b49 _pytest/__init__.py
--- a/_pytest/__init__.py
+++ b/_pytest/__init__.py
@@ -1,2 +1,2 @@
 #
-__version__ = '2.2.0.dev2'
+__version__ = '2.2.0.dev3'


diff -r bc7d4c092207173c09d504200eac61e9809e6d24 -r 
a0dedb1ce96bd94b63bf97334914da22ec556b49 _pytest/runner.py
--- a/_pytest/runner.py
+++ b/_pytest/runner.py
@@ -35,9 +35,10 @@
             alldurations += rep.duration
     if not duration2rep:
         return
-    d2 = remaining = duration2rep.items()
+    d2 = list(duration2rep.items())
     d2.sort()
     d2.reverse()
+    remaining = []
     if not durations:
         tr.write_sep("=", "slowest test durations")
     else:


diff -r bc7d4c092207173c09d504200eac61e9809e6d24 -r 
a0dedb1ce96bd94b63bf97334914da22ec556b49 setup.py
--- a/setup.py
+++ b/setup.py
@@ -24,7 +24,7 @@
         name='pytest',
         description='py.test: simple powerful testing with Python',
         long_description = long_description,
-        version='2.2.0.dev2',
+        version='2.2.0.dev3',
         url='http://pytest.org',
         license='MIT license',
         platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'],

Repository URL: https://bitbucket.org/hpk42/pytest/

--

This is a commit notification from bitbucket.org. You are receiving
this because you have the service enabled, addressing the recipient of
this email.
_______________________________________________
py-svn mailing list
py-svn@codespeak.net
http://codespeak.net/mailman/listinfo/py-svn

Reply via email to