Author: Matti Picus <matti.pi...@gmail.com> Branch: numpy-tests Changeset: r873:433f33dd1fda Date: 2013-11-04 17:37 +0200 http://bitbucket.org/pypy/buildbot/changeset/433f33dd1fda/
Log: tests run diff --git a/bot2/pypybuildbot/builds.py b/bot2/pypybuildbot/builds.py --- a/bot2/pypybuildbot/builds.py +++ b/bot2/pypybuildbot/builds.py @@ -328,14 +328,11 @@ def update_git(platform, factory, repourl, workdir, use_branch, force_branch=None): - factory.addstep( + factory.addStep( Git( repourl=repourl, mode='full', method='fresh', - defaultBranch=force_branch, - branchType='inrepo', - clobberOnBranchChange=False, workdir=workdir, logEnviron=False)) @@ -840,35 +837,35 @@ # virtualenv the download self.addStep(ShellCmd( description="create virtualenv", - command=['virtualenv','-p', 'bin/pypy', 'install'], - workdir='pypy-c', + command=['virtualenv','-p', 'pypy-c/bin/pypy', 'install'], + workdir='./', haltOnFailure=True, )) self.addStep(ShellCmd( description="install nose", command=['install/bin/pip', 'install','nose'], - workdir='pypy-c', + workdir='./', haltOnFailure=True, )) # obtain a pypy-compatible branch of numpy numpy_url = 'https://www.bitbucket.org/pypy/numpy' - numpy_pypy_branch = 'pypy' + numpy_pypy_branch = 'pypy-compat' update_git(platform, self, numpy_url, 'numpy_src', use_branch=True, force_branch=numpy_pypy_branch) self.addStep(ShellCmd( description="install numpy", - command=['install/bin/python', 'setup.py','install'], + command=['../install/bin/python', 'setup.py','install'], workdir='numpy_src')) self.addStep(ShellCmd( description="test numpy", - command=['install/bin/python', '-c', '"import numpy;numpy.test()"', - '> pytest-numpy.log','2>&1'], - logfiles={'pytestLog': 'pytest-numpy.log'}, + command=['bin/nosetests', 'site-packages/numpy', + ], + #logfiles={'pytestLog': 'pytest-numpy.log'}, timeout=4000, - workdir='numpy_src', + workdir='install', #env={"PYTHONPATH": ['download']}, # shouldn't be needed, but what if it is set externally? )) _______________________________________________ pypy-commit mailing list pypy-commit@python.org https://mail.python.org/mailman/listinfo/pypy-commit