Skip to content
This repository has been archived by the owner on May 13, 2020. It is now read-only.

Commit

Permalink
change setuptools builder
Browse files Browse the repository at this point in the history
  • Loading branch information
agroszer committed Oct 14, 2015
1 parent cdedb3e commit 8e6dbcb
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions buildmaster/master.cfg
Expand Up @@ -913,10 +913,15 @@ def setuptools_dev_builder(name, slavename, platform, locks):
#lc = LastChangeGit()
#f.addStep(lc)

cmd = platform.python + " setup.py test"
f.addStep(shell.ShellCommand(
command=[platform.python, r"bootstrap.py"],
haltOnFailure=True,
name="bootstrap",
description="bootstrap"))

cmd = platform.python + " setup.py ptr --addopts='-rs'"
cmd = platform.withcompiler % cmd
f.addStep(Test(
#command=[r"bin\test.exe", "--exit-with-status", "-1"],
command=cmd,
haltOnFailure=False,
name="test",
Expand Down

0 comments on commit 8e6dbcb

Please sign in to comment.