[py-svn] r32227 - py/dist/py/test/rsession/testing

briandorsey at codespeak.net briandorsey at codespeak.net
Tue Sep 12 17:32:07 CEST 2006


Author: briandorsey
Date: Tue Sep 12 17:32:06 2006
New Revision: 32227

Modified:
   py/dist/py/test/rsession/testing/test_rsync.py
Log:
Disabled symlink tests on Windows.


Modified: py/dist/py/test/rsession/testing/test_rsync.py
==============================================================================
--- py/dist/py/test/rsession/testing/test_rsync.py	(original)
+++ py/dist/py/test/rsession/testing/test_rsync.py	Tue Sep 12 17:32:06 2006
@@ -45,6 +45,8 @@
     assert not dest2.join('subdir', 'file1').check() 
 
 def test_symlink_rsync():
+    if py.std.sys.platform == 'win32':
+        py.test.skip("symlinks are unsupported on Windows.")
     base = py.test.ensuretemp('symlinkrsync')
     dest = base.join('dest')
     source = base.join('source')



More information about the pytest-commit mailing list