Skip to content

Commit

Permalink
Merge 7535372 into ffbc693
Browse files Browse the repository at this point in the history
  • Loading branch information
bwrsandman committed Jan 21, 2015
2 parents ffbc693 + 7535372 commit af49c21
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions runbot_skip_tests/runbot_build.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,8 +29,7 @@
class runbot_build(orm.Model):
_inherit = "runbot.build"

def spawn(self, cmd, lock_path, log_path, cpu_limit=None, shell=False,
showstderr=False):
def spawn(self, cmd, lock_path, log_path, cpu_limit=None, shell=False):
"""Remove "--test-enable" from cmd line"""
cmd = [c for c in cmd if c != '--test-enable']
return super(runbot_build, self).spawn(
Expand All @@ -39,5 +38,4 @@ def spawn(self, cmd, lock_path, log_path, cpu_limit=None, shell=False,
log_path,
cpu_limit=cpu_limit,
shell=shell,
showstderr=showstderr,
)

0 comments on commit af49c21

Please sign in to comment.