1 new changeset in pytest: http://bitbucket.org/hpk42/pytest/changeset/7cef8ef83b9b/ changeset: 7cef8ef83b9b user: hpk42 date: 2011-07-06 10:18:11 summary: show release level info for pypy affected #: 4 files (74 bytes)
--- a/CHANGELOG Tue Jul 05 21:23:59 2011 +0200 +++ b/CHANGELOG Wed Jul 06 10:18:11 2011 +0200 @@ -13,6 +13,7 @@ - fix issue48: typo in MarkInfo repr leading to exception - fix issue49: avoid confusing error when initizaliation partially fails - fix issue44: env/username expansion for junitxml file path +- show releaselevel information for pypy Changes between 2.0.2 and 2.0.3 ---------------------------------------------- --- a/_pytest/__init__.py Tue Jul 05 21:23:59 2011 +0200 +++ b/_pytest/__init__.py Wed Jul 06 10:18:11 2011 +0200 @@ -1,2 +1,2 @@ # -__version__ = '2.1.0.dev9' +__version__ = '2.1.0.dev10' --- a/_pytest/terminal.py Tue Jul 05 21:23:59 2011 +0200 +++ b/_pytest/terminal.py Wed Jul 06 10:18:11 2011 +0200 @@ -259,7 +259,7 @@ msg = "platform %s -- Python %s" % (sys.platform, verinfo) if hasattr(sys, 'pypy_version_info'): verinfo = ".".join(map(str, sys.pypy_version_info[:3])) - msg += "[pypy-%s]" % verinfo + msg += "[pypy-%s-%s]" % (verinfo, sys.pypy_version_info[3]) msg += " -- pytest-%s" % (py.test.__version__) if self.verbosity > 0 or self.config.option.debug or \ getattr(self.config.option, 'pastebin', None): --- a/setup.py Tue Jul 05 21:23:59 2011 +0200 +++ b/setup.py Wed Jul 06 10:18:11 2011 +0200 @@ -22,7 +22,7 @@ name='pytest', description='py.test: simple powerful testing with Python', long_description = long_description, - version='2.1.0.dev9', + version='2.1.0.dev10', 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