[py-svn] r31866 - py/branch/distributed/py/test/rsession

arigo at codespeak.net arigo at codespeak.net
Thu Aug 31 11:33:33 CEST 2006


Author: arigo
Date: Thu Aug 31 11:33:29 2006
New Revision: 31866

Modified:
   py/branch/distributed/py/test/rsession/hostmanage.py
Log:
Exclude the ~ backup files from rsync too.


Modified: py/branch/distributed/py/test/rsession/hostmanage.py
==============================================================================
--- py/branch/distributed/py/test/rsession/hostmanage.py	(original)
+++ py/branch/distributed/py/test/rsession/hostmanage.py	Thu Aug 31 11:33:29 2006
@@ -55,7 +55,7 @@
     _rsync = py.path.local.sysfind("rsync")
     assert destpath
     args = ["-az", "--delete-excluded",
-            "--delete", "--exclude=.svn/", "--exclude=*.pyc"]
+            "--delete", "--exclude=.svn/", "--exclude=*.pyc", '--exclude=*~']
     if isinstance(sources, list):
         args += sources
     else:



More information about the pytest-commit mailing list