[py-svn] r38117 - py/trunk/py/bin

fijal at codespeak.net fijal at codespeak.net
Wed Feb 7 21:41:58 CET 2007


Author: fijal
Date: Wed Feb  7 21:41:55 2007
New Revision: 38117

Modified:
   py/trunk/py/bin/_update_website.py
Log:
call "python py.test" instead of "py.test" (does not rely on +x flag)


Modified: py/trunk/py/bin/_update_website.py
==============================================================================
--- py/trunk/py/bin/_update_website.py	(original)
+++ py/trunk/py/bin/_update_website.py	Wed Feb  7 21:41:55 2007
@@ -32,7 +32,8 @@
     apigenpath = pkgpath.join('apigen/apigen.py') # XXX be more general here?
     if not apigenpath.check(file=True):
         apigenpath = pypath.join('apigen/apigen.py')
-    cmd = 'PYTHONPATH="%s:%s" "%s" --apigen="%s" "%s" %s' % (pypath.dirpath(),
+    cmd = 'PYTHONPATH="%s:%s" python "%s" --apigen="%s" "%s" %s' % (
+                                                             pypath.dirpath(),
                                                              pkgpath.dirpath(),
                                                              pytestpath,
                                                              apigenpath,



More information about the pytest-commit mailing list