[svn r38165] Update this as well

--HG--
branch : trunk
This commit is contained in:
fijal 2007-02-08 16:35:11 +01:00
parent 0e8510648f
commit 395d97160c
1 changed files with 2 additions and 2 deletions

View File

@ -18,9 +18,9 @@ def rsync(pkgpath, apidocspath, gateway, remotepath):
pkgpath.copy(tempdir.ensure(pkgpath.basename, dir=True)) pkgpath.copy(tempdir.ensure(pkgpath.basename, dir=True))
apidocspath.copy(tempdir.ensure(apidocspath.basename, dir=True)) apidocspath.copy(tempdir.ensure(apidocspath.basename, dir=True))
rs = py.execnet.RSync(delete=True) rs = py.execnet.RSync(tempdir, delete=True)
rs.add_target(gateway, remotepath) rs.add_target(gateway, remotepath)
rs.send(tempdir) rs.send()
def run_tests(pkgpath, args=''): def run_tests(pkgpath, args=''):
""" run the unit tests and build the docs """ """ run the unit tests and build the docs """