зеркало из https://github.com/mozilla/gecko-dev.git
2fb3ca19f0 | ||
---|---|---|
.. | ||
moztest | ||
tests | ||
README.md | ||
setup.py |
README.md
Moztest
Package for handling Mozilla test results.
Usage example
This shows how you can create an xUnit representation of python unittest results.
from results import TestResultCollection
from output import XUnitOutput
collection = TestResultCollection.from_unittest_results(results)
out = XUnitOutput()
with open('out.xml', 'w') as f:
out.serialize(collection, f)