From 92177599587c70bbbfd5056303bca630dd882739 Mon Sep 17 00:00:00 2001 From: buildbot Date: Thu, 19 Mar 2015 20:56:42 +0000 Subject: [PATCH] Don't try to set the 'test:unittest' property when running the tests on OS X -- our deployment platform is Linux, and we're running an OS X build in order to see that we're not messing things up for sprint participants using Macs, primarily. - Legacy-Id: 9253 --- buildbot/masters/datatracker/master.cfg | 7 ------- 1 file changed, 7 deletions(-) diff --git a/buildbot/masters/datatracker/master.cfg b/buildbot/masters/datatracker/master.cfg index 341c24ab9..d1eb4998e 100644 --- a/buildbot/masters/datatracker/master.cfg +++ b/buildbot/masters/datatracker/master.cfg @@ -178,13 +178,6 @@ factory.addStep(Test( haltOnFailure=True, command=["ietf/manage.py", "test", "--settings=settings_sqlitetest"], )) -# This should be the last action -factory.addStep(ShellCommand( - descriptionDone="mark as passed", - workdir=Interpolate('build/%(src::branch)s'), - command=["svn", "--username=buildbot@tools.ietf.org", "--non-interactive", - "propset", "--revprop", "-r", Property('got_revision'), "test:unittest", "passed" ], - )) c['builders'].append(BuilderConfig(name="Test Suite (OS X)", factory=factory, slavenames=["datatracker_osx_py27_4"]))