[pypy-commit] buildbot default: add a extra rpython test step for the rpython split

RonnyPfannschmidt noreply at buildbot.pypy.org
Tue Jan 15 19:13:03 CET 2013


Author: Ronny Pfannschmidt <Ronny.Pfannschmidt at gmx.de>
Branch: 
Changeset: r733:940bbdfd9a85
Date: 2013-01-15 19:12 +0100
http://bitbucket.org/pypy/buildbot/changeset/940bbdfd9a85/

Log:	add a extra rpython test step for the rpython split

diff --git a/bot2/pypybuildbot/builds.py b/bot2/pypybuildbot/builds.py
--- a/bot2/pypybuildbot/builds.py
+++ b/bot2/pypybuildbot/builds.py
@@ -367,7 +367,7 @@
 
         timeout=kwargs.get('timeout', 4000)
         self.addStep(PytestCmd(
-            description="pytest",
+            description="pytest pypy",
             command=["python", "testrunner/runner.py",
                      "--logfile=testrun.log",
                      "--config=pypy/testrunner_cfg.py",
@@ -379,6 +379,19 @@
             env={"PYTHONPATH": ['.'],
                  "PYPYCHERRYPICK": cherrypick}))
 
+        self.addStep(PytestCmd(
+            description="pytest rpython",
+            command=["python", "testrunner/runner.py",
+                     "--logfile=testrun.log",
+                     "--config=pypy/testrunner_cfg.py",
+                     "--config=~/machine_cfg.py",
+                     "--root=rpython", "--timeout=%s" % (timeout,)
+                     ] + ["--config=%s" % cfg for cfg in extra_cfgs],
+            logfiles={'pytestLog': 'testrun.log'},
+            timeout=timeout,
+            env={"PYTHONPATH": ['.'],
+                 "PYPYCHERRYPICK": cherrypick}))
+
 
 class Translated(factory.BuildFactory):
 


More information about the pypy-commit mailing list