Tagged Questions
6
votes
1answer
495 views
Buildbot parsing Python Unit test results
I have a test suite that outputs test results in the Python Unit Test format: http://docs.python.org/library/unittest.html
Is there an existing Buildbot module/plugin that can parse this form?
...
4
votes
3answers
168 views
How to distribute and execute platform-specific unit tests?
We have a python project that we want to start testing using buildbot. Its unit tests include tests that should only work on some platforms. So, we've got tests that should pass on all platforms, ...