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
This commit is contained in:
buildbot 2015-03-19 20:56:42 +00:00
parent 7c67e26fa4
commit 9217759958

View file

@ -178,13 +178,6 @@ factory.addStep(Test(
haltOnFailure=True, haltOnFailure=True,
command=["ietf/manage.py", "test", "--settings=settings_sqlitetest"], 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, c['builders'].append(BuilderConfig(name="Test Suite (OS X)", factory=factory,
slavenames=["datatracker_osx_py27_4"])) slavenames=["datatracker_osx_py27_4"]))