[py-svn] r34484 - py/dist/py/test/rsession

fijal at codespeak.net fijal at codespeak.net
Sat Nov 11 14:03:57 CET 2006


Author: fijal
Date: Sat Nov 11 14:03:56 2006
New Revision: 34484

Modified:
   py/dist/py/test/rsession/hostmanage.py
   py/dist/py/test/rsession/web.py
Log:
Ooops, forgotten checkin.


Modified: py/dist/py/test/rsession/hostmanage.py
==============================================================================
--- py/dist/py/test/rsession/hostmanage.py	(original)
+++ py/dist/py/test/rsession/hostmanage.py	Sat Nov 11 14:03:56 2006
@@ -27,7 +27,7 @@
         else:
             return base in self.rsync_roots
 
-def prepare_gateway(sshosts, relpath, rsync_roots, optimise_localhost, remote_python):
+def prepare_gateway(sshosts, relpath, rsync_roots, optimise_localhost, remote_python, pkgdir):
     hosts = []
     for host in sshosts:
         if host != 'localhost' or not optimise_localhost:
@@ -70,7 +70,7 @@
     nodes = []
     exc_info = [None]
     hosts = prepare_gateway(sshhosts, relpath, rsync_roots, optimise_localhost,
-        remote_python)
+        remote_python, pkgdir)
     
     # rsyncing
     if optimise_localhost:

Modified: py/dist/py/test/rsession/web.py
==============================================================================
--- py/dist/py/test/rsession/web.py	(original)
+++ py/dist/py/test/rsession/web.py	Sat Nov 11 14:03:56 2006
@@ -33,7 +33,7 @@
     from pypy.translator.js.main import rpython2javascript, Options
     from pypy.translator.js import commproxy
 
-    Options.debug_transform = True
+    Options.debug_transform = False
     commproxy.USE_MOCHIKIT = False
     IMPORTED_PYPY = True
 except ImportError:



More information about the pytest-commit mailing list