Hi,

Bellow some old example code I used to parse output for failing tests, I
hope will be easy to adapt in your case:

class MyShellCommand(shell.ShellCommand):

    def __init__(self, **kwargs):
        shell.ShellCommand.__init__(self, **kwargs)
        self.addLogObserver('stdio',
logobserver.LineConsumerLogObserver(self.logConsumer))
        self.testFailed = False

    def logConsumer(self):
        while True:
            stream, line = yield
            if line.find('TEST_FAILURE_INDICATOR') != -1:
                self.testFailed = True

                return

    def evaluateCommand(self, cmd):
        res = shell.ShellCommand.evaluateCommand(self, cmd)
        if self.testFailed:
            res = FAIL

BR,

C


On Sat, Dec 7, 2019 at 10:19 PM honas grael <honasgraeym...@gmail.com>
wrote:

> Hello
> I have a buildstep as follows
>
> makepackages = steps.ShellCommand(name="make packages",
>                                   command=["make", "packages"],
>                                   haltOnFailure=True,
>                                   description="make packages")
>
>
> when it runs the output is sent to stdio, I would like to
>
> add a post processing step following the command that processes
>
> the stdio output from makepackages, so that I can search for
>
> keywords in stdio.
>
> How can I do this? I've read the docs but I do not follow,
>
> can anyone guide me
>
>
> Regards
>
> _______________________________________________
> users mailing list
> users@buildbot.net
> https://lists.buildbot.net/mailman/listinfo/users
_______________________________________________
users mailing list
users@buildbot.net
https://lists.buildbot.net/mailman/listinfo/users

Reply via email to