mirror of
https://github.com/dorny/test-reporter.git
synced 2025-12-15 22:07:09 +01:00
Add python-xunit-parser.ts with associated case statement Add python-xunit to reporter docs in action.yml Add tests Update README Resolves #244 Resolves #633
8 lines
242 B
TypeScript
8 lines
242 B
TypeScript
import {ParseOptions} from '../../test-parser'
|
|
import {JavaJunitParser} from '../java-junit/java-junit-parser'
|
|
|
|
export class PythonXunitParser extends JavaJunitParser {
|
|
constructor(readonly options: ParseOptions) {
|
|
super(options)
|
|
}
|
|
}
|