[py-svn] r57441 - in py/release/0.9.x: . py py/test/rsession/testing

hpk at codespeak.net hpk at codespeak.net
Mon Aug 18 19:48:17 CEST 2008


Author: hpk
Date: Mon Aug 18 19:48:15 2008
New Revision: 57441

Modified:
   py/release/0.9.x/CHANGELOG
   py/release/0.9.x/py/__init__.py
   py/release/0.9.x/py/test/rsession/testing/test_reporter.py
   py/release/0.9.x/setup.py
Log:
fixes for python 2.3


Modified: py/release/0.9.x/CHANGELOG
==============================================================================
--- py/release/0.9.x/CHANGELOG	(original)
+++ py/release/0.9.x/CHANGELOG	Mon Aug 18 19:48:15 2008
@@ -13,6 +13,8 @@
 
 * improved py.execnet bootstrapping on windows
 
+* fix for py.path.svn* to work with svn 1.5
+
 * py.test's traceback is better parseable from editors 
   (follows the filenames:LINENO: MSG convention)
 

Modified: py/release/0.9.x/py/__init__.py
==============================================================================
--- py/release/0.9.x/py/__init__.py	(original)
+++ py/release/0.9.x/py/__init__.py	Mon Aug 18 19:48:15 2008
@@ -7,7 +7,7 @@
 """
 from initpkg import initpkg
 
-version = "0.9.2-alpha-7"
+version = "0.9.2-alpha-8"
 
 initpkg(__name__,
     description = "py lib: agile development and test support library",

Modified: py/release/0.9.x/py/test/rsession/testing/test_reporter.py
==============================================================================
--- py/release/0.9.x/py/test/rsession/testing/test_reporter.py	(original)
+++ py/release/0.9.x/py/test/rsession/testing/test_reporter.py	Mon Aug 18 19:48:15 2008
@@ -120,6 +120,8 @@
         return out
 
     def test_failed_to_load(self):
+        if py.std.sys.version_info < (2,4):
+            py.test.skip(">= python 2.4 required")
         tmpdir = py.test.ensuretemp("failedtoload")
         tmpdir.ensure("__init__.py")
         tmpdir.ensure("test_three.py").write(py.code.Source("""
@@ -211,6 +213,8 @@
             assert val.find(expected) != -1
     
     def test_full_module(self):
+        if py.std.sys.version_info < (2,4):
+            py.test.skip(">= python 2.4 required")
         val = self._test_full_module()
         assert val.find("FAILED TO LOAD MODULE: repmod/test_three.py\n"\
         "\nSkipped ('reason') repmod/test_two.py") != -1

Modified: py/release/0.9.x/setup.py
==============================================================================
--- py/release/0.9.x/setup.py	(original)
+++ py/release/0.9.x/setup.py	Mon Aug 18 19:48:15 2008
@@ -18,7 +18,7 @@
     setup(cmdclass=cmdclass,
         name='py',
         description='py lib: agile development and test support library',
-        version='0.9.2-alpha-7', 
+        version='0.9.2-alpha-8', 
         url='http://pylib.org', 
         license='MIT license',
         platforms=['unix', 'linux', 'osx', 'cygwin', 'win32'], 



More information about the pytest-commit mailing list