<div dir="ltr"><br><br><div class="gmail_quote"><div dir="ltr">Le ven. 20 mai 2016 à 16:22, honas grael <<a href="mailto:honasgraeymael@gmail.com">honasgraeymael@gmail.com</a>> a écrit :<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div><div><div><div><div><div>Hi everyone,<br></div>I'm using Windows and Buildbot 0.9.4b, </div></div></div></div></div></div></blockquote><div>First thing is to do:</div><div>pip install -U 'buildbot[bundle]==0.9.0b9'</div><div><br></div><div>please dont use old betas.. :)</div><div> </div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div dir="ltr"><div><div><div><div><div>I have managed to create a build and run tests. But now I would like to collate the test results.<br></div>In my setup when a test completes an XML file is created what I'd like to know is how best to collate the results. (there are Lots and lots of results to go through )<br><br></div>I came across this question on <a href="http://stackoverflow.com/questions/25462570/showing-test-count-in-buildbot" target="_blank">stackoverflow</a>. I am not familiar at all with the <code>buildbot.steps.shell.Test also from the answer it might be best for me to parse the xml results myself, but I'm not sure where that code should go.<br><br></code></div><code>Is the code shown in the example meant to be in the master.cfg file?<br><br></code></div><code>In buildbot 9 what are some good practices in using </code><br><code>buildbot.steps.shell.Test, are there any good examples out there.<br></code></div></div></blockquote><div><br></div><div>There are not much changes in buildbot nine as far as the tests are concerned. It looks like you xml parsing is quite specific.</div><div>I think the best option is to create a script that is run on the slave (with a shellcommand), which parses the xml, and generate reports based on that.</div><div>Then you can have a step which download the consolidated result from the slave and add it as a html log.</div><div><br></div><div>a good example on how to do this can be found in buildbot_travis</div><div><a href="https://github.com/buildbot/buildbot_travis/blob/master/buildbot_travis/steps/base.py">https://github.com/buildbot/buildbot_travis/blob/master/buildbot_travis/steps/base.py</a><br></div><div><br></div></div></div>