Library for reading and manipulating Ant JUnit XML result files.
| Class | |
No class docstring; 0/8 instance variable, 0/1 class variable, 3/4 methods documented |
| Class | |
'testcase' result container |
| Class | |
'error' result container |
| Class | |
'failure' result container |
| Class | |
Common container for 'error' and 'failure' results |
| Function | cdata |
Undocumented |
| Function | filter |
Undocumented |
| Function | invalid |
Undocumented |
| Function | print |
Print summary of junitxml results to stdout. |
| Function | read |
Read in the test_result file @param test_file: test file path @type test_file: str @param test_name: name of test @type test_name: str @return: test results @rtype: Result |
| Function | read |
Read in the test_results and aggregate into a single Result object @param filter_: list of packages that should be processed @type filter_: [str] @return: aggregated result @rtype: L{Result} |
| Function | test |
Generate JUnit XML file for a unary test suite where the test failed |
| Function | test |
Generate JUnit XML file for a unary test suite where the test succeeded. |
| Variable | invalid |
Undocumented |
| Variable | pattern |
Undocumented |
| Variable | python2 |
Undocumented |
| Variable | RE |
Undocumented |
| Function | _load |
Undocumented |
| Function | _read |
read in file, screen out unsafe unicode characters |
| Function | _text |
Undocumented |
| Variable | _safe |
Undocumented |
Read in the test_result file @param test_file: test file path @type test_file: str @param test_name: name of test @type test_name: str @return: test results @rtype: Result
Read in the test_results and aggregate into a single Result object @param filter_: list of packages that should be processed @type filter_: [str] @return: aggregated result @rtype: L{Result}
Generate JUnit XML file for a unary test suite where the test failed
@param test_name: Name of test that failed @type test_name: str @param message: failure message @type message: str @param stdout: stdout data to include in report @type stdout: str
Generate JUnit XML file for a unary test suite where the test succeeded.
@param test_name: Name of test that passed @type test_name: str