[svn r38181] delete is now an option per-host

--HG--
branch : trunk
This commit is contained in:
hpk 2007-02-08 18:24:30 +01:00
parent 9b22af1b32
commit 1e8845dfa5
1 changed files with 2 additions and 2 deletions

View File

@ -18,8 +18,8 @@ def rsync(pkgpath, apidocspath, gateway, remotepath):
pkgpath.copy(tempdir.ensure(pkgpath.basename, dir=True))
apidocspath.copy(tempdir.ensure(apidocspath.basename, dir=True))
rs = py.execnet.RSync(tempdir, delete=True)
rs.add_target(gateway, remotepath)
rs = py.execnet.RSync(tempdir)
rs.add_target(gateway, remotepath, delete=True)
rs.send()
def run_tests(pkgpath, args=''):